123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <?xml version="1.0" encoding="utf-8"?>
- <layout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto">
- <data>
- <variable
- name="clickListener"
- type="android.view.View.OnClickListener" />
- </data>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#F2F2F2"
- android:orientation="vertical">
- <include
- android:id="@+id/include_title"
- layout="@layout/include_title_bar"
- app:clickListener="@{clickListener}" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="44dp"
- android:layout_marginTop="5dp"
- android:background="@color/picture_color_white"
- android:gravity="center_vertical"
- android:paddingLeft="15dp"
- android:paddingRight="34dp">
- <TextView
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:text="持卡人"
- android:textColor="#000000"
- android:textSize="15sp" />
- <androidx.appcompat.widget.AppCompatEditText
- android:id="@+id/input_user_name"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:gravity="center"
- android:textSize="12sp"
- android:background="@null"
- android:hint="填写持卡人姓名"/>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/select_bank"
- android:onClick="@{clickListener}"
- android:layout_width="match_parent"
- android:layout_height="44dp"
- android:layout_marginTop="5dp"
- android:background="@color/picture_color_white"
- android:gravity="center_vertical"
- android:paddingLeft="15dp"
- android:paddingRight="5dp">
- <TextView
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:text="银行"
- android:textColor="#000000"
- android:textSize="14sp" />
- <TextView
- android:id="@+id/bank"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textColor="#808080"
- android:textSize="12sp"
- android:layout_marginRight="10dp"
- android:text="选择银行"/>
- <androidx.appcompat.widget.AppCompatImageView
- android:layout_width="25dp"
- android:layout_height="15dp"
- android:src="@mipmap/next_black_img"/>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="44dp"
- android:layout_marginTop="1dp"
- android:background="@color/picture_color_white"
- android:gravity="center_vertical"
- android:paddingLeft="15dp"
- android:paddingRight="34dp">
- <TextView
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:text="银行卡号"
- android:textColor="#000000"
- android:textSize="14sp" />
- <androidx.appcompat.widget.AppCompatEditText
- android:id="@+id/input_bank_card_num"
- android:inputType="number"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:gravity="center"
- android:textSize="12sp"
- android:background="@null"
- android:hint="填写银行卡号"/>
- </LinearLayout>
- <TextView
- android:id="@+id/confirm_button"
- android:onClick="@{clickListener}"
- android:layout_width="match_parent"
- android:layout_height="49dp"
- android:gravity="center"
- android:textSize="16sp"
- android:textColor="#FFFFFF"
- android:background="@drawable/bg_finish_button"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:layout_marginTop="200dp"
- android:text="确认"/>
- </LinearLayout>
- </layout>
|