第N次提交
This commit is contained in:
141
app/src/main/res/layout/activity_add_bank.xml
Normal file
141
app/src/main/res/layout/activity_add_bank.xml
Normal file
@@ -0,0 +1,141 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/white"
|
||||
android:id="@+id/big_bg"
|
||||
android:foreground="?android:attr/selectableItemBackground"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.netease.yunxin.kit.common.ui.widgets.BackTitleBar
|
||||
android:id="@+id/contact_list_activity_titleBar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?actionBarSize"
|
||||
android:background="@color/white"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:titleText="添加银行卡"
|
||||
app:titleTextColor="@android:color/black" />
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1px"
|
||||
android:background="#ededed"
|
||||
android:visibility="visible" />
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="40dp"
|
||||
android:background="#FFE5E5"
|
||||
android:gravity="center_vertical"
|
||||
android:paddingStart="@dimen/dp_15"
|
||||
android:paddingRight="@dimen/dp_15"
|
||||
android:lines="1"
|
||||
android:ellipsize="end"
|
||||
android:text="请填写您本人的银行卡信息"
|
||||
android:textColor="#ffff2b2b"
|
||||
android:textSize="14sp"
|
||||
/>
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:padding="@dimen/dp_15"
|
||||
android:orientation="vertical">
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="姓名"
|
||||
android:textColor="#ff383838"
|
||||
android:textSize="14sp"
|
||||
/>
|
||||
|
||||
<EditText
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="44dp"
|
||||
android:gravity="center_vertical"
|
||||
android:background="@color/transparent"
|
||||
android:hint ="请输入您的真实姓名"
|
||||
android:textColorHint="#ff999999"
|
||||
android:textSize="18sp"
|
||||
android:id="@+id/name_et"
|
||||
android:layout_marginTop="10dp"
|
||||
android:textColor="@color/black"
|
||||
/>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1px"
|
||||
android:background="#ededed"
|
||||
android:visibility="visible" />
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="银行卡号"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:textColor="#ff383838"
|
||||
android:textSize="14sp"
|
||||
/>
|
||||
<EditText
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="44dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:id="@+id/number_et"
|
||||
android:gravity="center_vertical"
|
||||
android:background="@color/transparent"
|
||||
android:hint ="请输入您本人的银行卡号"
|
||||
android:textColorHint="#ff999999"
|
||||
android:textSize="18sp"
|
||||
android:textColor="@color/black"
|
||||
/>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1px"
|
||||
android:background="#ededed"
|
||||
android:visibility="visible" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="所属银行"
|
||||
android:layout_marginTop="@dimen/dp_20"
|
||||
android:textColor="#ff383838"
|
||||
android:textSize="14sp"
|
||||
/>
|
||||
<EditText
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="44dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:id="@+id/bank_et"
|
||||
android:gravity="center_vertical"
|
||||
android:background="@color/transparent"
|
||||
android:hint ="请输入所属银行"
|
||||
android:textColorHint="#ff999999"
|
||||
android:textSize="18sp"
|
||||
android:textColor="@color/black"
|
||||
/>
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1px"
|
||||
android:background="#ededed"
|
||||
android:visibility="visible" />
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/dp_10"
|
||||
android:id="@+id/tips_tv"
|
||||
android:visibility="invisible"
|
||||
android:text="实名认证无法自行修改,如需修改请联系客服人员"
|
||||
android:textColor="#ffff2b2b"
|
||||
android:textSize="14sp"
|
||||
/>
|
||||
<Button
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="48dp"
|
||||
android:layout_marginTop="@dimen/dp_30"
|
||||
android:text="提交"
|
||||
android:id="@+id/sumbit_bt"
|
||||
android:background="@drawable/button_true_bg1"
|
||||
android:textColor="#fff6f8fd"
|
||||
android:textSize="16sp"
|
||||
/>
|
||||
</LinearLayout>
|
||||
</androidx.appcompat.widget.LinearLayoutCompat>
|
||||
Reference in New Issue
Block a user