2025-11-24 09:49:49 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<FrameLayout
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
2025-11-27 08:30:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingVertical="20dp"
|
|
|
|
|
android:paddingHorizontal="15dp"
|
|
|
|
|
android:background="@drawable/bg_binding_bank_dialog"
|
|
|
|
|
>
|
2025-11-24 09:49:49 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
2025-11-27 08:30:33 +00:00
|
|
|
android:layout_height="500dp"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content" >
|
2025-11-24 09:49:49 +00:00
|
|
|
|
2025-11-27 08:30:33 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:id="@+id/tv_title"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:textColor="@color/gray3"
|
|
|
|
|
android:text="@string/bind_bank_title"
|
|
|
|
|
/>
|
2025-11-24 09:49:49 +00:00
|
|
|
|
2025-11-27 08:30:33 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
|
android:id="@+id/iv_close"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_gravity="end"
|
|
|
|
|
android:src="@mipmap/icon_close"
|
|
|
|
|
android:tint="@color/black"
|
|
|
|
|
android:layout_marginEnd="30dp"
|
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
|
/>
|
|
|
|
|
</RelativeLayout>
|
2025-11-24 09:49:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
2025-11-27 08:30:33 +00:00
|
|
|
android:id="@+id/tv_desc"
|
2025-11-24 09:49:49 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-11-27 08:30:33 +00:00
|
|
|
android:layout_marginTop="20dp"
|
2025-11-24 09:49:49 +00:00
|
|
|
android:textSize="14sp"
|
2025-11-27 08:30:33 +00:00
|
|
|
android:textStyle="bold"
|
2025-11-24 09:49:49 +00:00
|
|
|
android:textColor="@color/gray9"
|
2025-11-27 08:30:33 +00:00
|
|
|
android:text="@string/bind_bank_desc"
|
2025-11-24 09:49:49 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
2025-11-27 08:30:33 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal"
|
2025-11-24 09:49:49 +00:00
|
|
|
android:layout_marginTop="20dp"
|
2025-11-27 08:30:33 +00:00
|
|
|
android:gravity="center_vertical"
|
2025-11-27 08:32:55 +00:00
|
|
|
android:paddingVertical="10dp"
|
2025-11-27 08:30:33 +00:00
|
|
|
android:paddingHorizontal="20dp"
|
|
|
|
|
android:background="@drawable/bg_binding_bank_edit">
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:id="@+id/tv_cpf_title"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="15sp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:textColor="@color/gray3"
|
|
|
|
|
android:text="@string/bind_bank_cpf_title"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatEditText
|
|
|
|
|
android:id="@+id/tv_cpf_edit"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_marginHorizontal="10dp"
|
|
|
|
|
android:textSize="14sp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:background="@null"
|
|
|
|
|
android:textColor="@color/gray6"
|
|
|
|
|
android:hint="Please Input you CPF number"
|
|
|
|
|
/>
|
2025-11-24 09:49:49 +00:00
|
|
|
|
2025-11-27 08:30:33 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
|
android:id="@+id/iv_state"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_gravity="end"
|
|
|
|
|
android:src="@mipmap/icon_success"
|
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
|
/>
|
|
|
|
|
</LinearLayout>
|
2025-11-24 09:49:49 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
2025-11-27 08:30:33 +00:00
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:id="@+id/tv_confirm"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="46dp"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
android:background="@drawable/bg_but_zero_buy_dialog"
|
|
|
|
|
android:textSize="18sp"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:text="@string/continue1"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
|
/>
|
|
|
|
|
|
2025-11-24 09:49:49 +00:00
|
|
|
</FrameLayout>
|