822 lines
42 KiB
XML
822 lines
42 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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:orientation="vertical">
|
|
|
|
<include layout="@layout/common_toolbar"></include>
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/cdPerson"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginLeft="@dimen/dp_15"
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
android:layout_marginRight="@dimen/dp_15"
|
|
android:layout_marginBottom="@dimen/dp_7"
|
|
|
|
app:cardBackgroundColor="@color/white"
|
|
app:cardCornerRadius="@dimen/dp_8">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_16"
|
|
android:drawableLeft="@drawable/start"
|
|
android:text="请选择认证类型"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_17"></TextView>
|
|
|
|
<RadioGroup
|
|
android:id="@+id/rgTeam"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_12"
|
|
android:layout_marginTop="@dimen/dp_56"
|
|
android:layout_marginRight="@dimen/dp_12"
|
|
android:layout_marginBottom="@dimen/dp_16"
|
|
android:orientation="horizontal">
|
|
|
|
<RadioButton
|
|
android:id="@+id/rbCom"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/dp_40"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/select_auth_team"
|
|
android:button="@null"
|
|
android:checked="true"
|
|
android:gravity="center"
|
|
android:text="运输公司"
|
|
android:textColor="@drawable/select_auth_team_text"
|
|
android:textSize="@dimen/sp_15" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/rbPer"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/dp_40"
|
|
android:layout_marginLeft="@dimen/dp_12"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/select_auth_team"
|
|
android:button="@null"
|
|
android:checked="false"
|
|
android:gravity="center"
|
|
android:text="个人车队"
|
|
android:textColor="@drawable/select_auth_team_text"
|
|
android:textSize="@dimen/sp_15" />
|
|
</RadioGroup>
|
|
|
|
|
|
</RelativeLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:fillViewport="true">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<!-- 运输公司 -->
|
|
<LinearLayout
|
|
android:id="@+id/llCom"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginLeft="@dimen/dp_15"
|
|
android:layout_marginTop="@dimen/dp_7"
|
|
android:layout_marginRight="@dimen/dp_15"
|
|
app:cardBackgroundColor="@color/white"
|
|
app:cardCornerRadius="@dimen/dp_8">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_16"
|
|
android:text="上传营业执照"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_16"></TextView>
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/ivBusiness"
|
|
android:layout_width="@dimen/dp_155"
|
|
android:layout_height="@dimen/dp_97"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="@dimen/dp_58"
|
|
android:layout_marginBottom="@dimen/dp_22"
|
|
android:background="@drawable/business"></ImageView>
|
|
|
|
<TextView
|
|
android:id="@+id/tvBTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/ivBusiness"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:text="上传道路运输经营许可证"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_16"></TextView>
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/ivRoad"
|
|
android:layout_width="@dimen/dp_155"
|
|
android:layout_height="@dimen/dp_97"
|
|
android:layout_below="@+id/tvBTitle"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="@dimen/dp_22"
|
|
android:layout_marginBottom="@dimen/dp_22"
|
|
android:background="@drawable/road"></ImageView>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/ivRoad"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginLeft="@dimen/dp_8"
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
android:layout_marginRight="@dimen/dp_8"
|
|
android:paddingBottom="@dimen/dp_18">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_100"
|
|
android:layout_height="wrap_content"
|
|
android:text="经营许可证号"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<EditText
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_weight="1"
|
|
android:background="@null"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请输入经营许可证号"
|
|
android:paddingLeft="@dimen/dp_10"
|
|
android:paddingRight="@dimen/dp_10"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"
|
|
tools:text="王海生"></EditText>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_50"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_100"
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="有效期至"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<TextView
|
|
android:id="@+id/tvComDate"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_weight="1"
|
|
android:drawableRight="@drawable/right_gray"
|
|
android:drawablePadding="@dimen/dp_6"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请选择有效期至"
|
|
android:paddingLeft="@dimen/dp_10"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
</LinearLayout>
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginLeft="@dimen/dp_15"
|
|
android:layout_marginTop="@dimen/dp_15"
|
|
android:layout_marginRight="@dimen/dp_15"
|
|
app:cardBackgroundColor="@color/white"
|
|
app:cardCornerRadius="@dimen/dp_8">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/dp_16">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_16"
|
|
android:text="上传公司账户"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_16"></TextView>
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/ivComBank"
|
|
android:layout_width="@dimen/dp_155"
|
|
android:layout_height="@dimen/dp_97"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="@dimen/dp_20"
|
|
android:background="@drawable/bank_card"></ImageView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_26"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_90"
|
|
android:layout_height="wrap_content"
|
|
android:text="银行卡号"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<EditText
|
|
android:id="@+id/etComBankId"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_marginRight="@dimen/dp_8"
|
|
android:layout_weight="1"
|
|
android:background="@null"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请输入银行卡号"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></EditText>
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_14"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_70"
|
|
android:layout_height="wrap_content"
|
|
android:text="开户银行"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<EditText
|
|
android:id="@+id/etComBankName"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_marginRight="@dimen/dp_8"
|
|
android:layout_weight="1"
|
|
android:background="@null"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请输入开户银行"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></EditText>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginLeft="@dimen/dp_15"
|
|
android:layout_marginTop="@dimen/dp_14"
|
|
android:layout_marginRight="@dimen/dp_15"
|
|
app:cardBackgroundColor="@color/white"
|
|
app:cardCornerRadius="@dimen/dp_8">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/dp_16">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_16"
|
|
android:text="上传本人身份证(必填)"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_16"></TextView>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_20">
|
|
|
|
<ImageView
|
|
android:id="@+id/ivComFront"
|
|
android:layout_width="@dimen/dp_155"
|
|
android:layout_height="@dimen/dp_97"
|
|
android:layout_marginLeft="@dimen/dp_8"
|
|
android:background="@drawable/person_front" />
|
|
|
|
<ImageView
|
|
android:id="@+id/ivComBack"
|
|
android:layout_width="@dimen/dp_155"
|
|
android:layout_height="@dimen/dp_97"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginRight="@dimen/dp_8"
|
|
android:background="@drawable/person_back" />
|
|
</RelativeLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_16"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_90"
|
|
android:layout_height="wrap_content"
|
|
android:drawableLeft="@drawable/start"
|
|
android:drawablePadding="@dimen/dp_2"
|
|
android:text="姓名"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<EditText
|
|
android:id="@+id/etName"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_marginRight="@dimen/dp_8"
|
|
android:layout_weight="1"
|
|
android:background="@null"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请输入姓名"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></EditText>
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_14"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_70"
|
|
android:layout_height="wrap_content"
|
|
android:drawableLeft="@drawable/start"
|
|
android:drawablePadding="@dimen/dp_2"
|
|
android:text="身份证"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<EditText
|
|
android:id="@+id/etId"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_marginRight="@dimen/dp_8"
|
|
android:layout_weight="1"
|
|
android:background="@null"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请输入身份证号码"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></EditText>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/llStart"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_14"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_100"
|
|
android:layout_height="wrap_content"
|
|
android:drawableLeft="@drawable/start"
|
|
android:drawablePadding="@dimen/dp_2"
|
|
android:text="有效开始日期"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<TextView
|
|
android:id="@+id/tvStart"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/shape_phone_bg"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请选择开始日期"
|
|
android:paddingLeft="@dimen/dp_10"
|
|
android:paddingRight="@dimen/dp_10"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"
|
|
tools:text="1990-05-24"></TextView>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/llStart"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_14"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_100"
|
|
android:layout_height="wrap_content"
|
|
android:drawableLeft="@drawable/start"
|
|
android:drawablePadding="@dimen/dp_2"
|
|
android:text="有效结束日期"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<TextView
|
|
android:id="@+id/tvEnd"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/shape_phone_bg"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请选择结束日期"
|
|
android:paddingLeft="@dimen/dp_10"
|
|
android:paddingRight="@dimen/dp_10"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"
|
|
tools:text="1990-05-24"></TextView>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<View
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_10" />
|
|
</LinearLayout>
|
|
<!-- 个人车队 -->
|
|
<LinearLayout
|
|
android:id="@+id/llPerson"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:visibility="gone">
|
|
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginLeft="@dimen/dp_15"
|
|
android:layout_marginTop="@dimen/dp_15"
|
|
android:layout_marginRight="@dimen/dp_15"
|
|
app:cardBackgroundColor="@color/white"
|
|
app:cardCornerRadius="@dimen/dp_8">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_16"
|
|
android:text="上传本人身份证(必填)"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_16"></TextView>
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/ivFront"
|
|
android:layout_width="@dimen/dp_155"
|
|
android:layout_height="@dimen/dp_97"
|
|
android:layout_marginLeft="@dimen/dp_8"
|
|
android:layout_marginTop="@dimen/dp_58"
|
|
android:layout_marginBottom="@dimen/dp_22"
|
|
android:background="@drawable/person_front"></ImageView>
|
|
|
|
<ImageView
|
|
android:id="@+id/ivBack"
|
|
android:layout_width="@dimen/dp_155"
|
|
android:layout_height="@dimen/dp_97"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginTop="@dimen/dp_58"
|
|
android:layout_marginRight="@dimen/dp_8"
|
|
android:layout_marginBottom="@dimen/dp_22"
|
|
android:background="@drawable/person_back"></ImageView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/ivFront"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginLeft="@dimen/dp_8"
|
|
android:layout_marginRight="@dimen/dp_8"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/dp_18">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_70"
|
|
android:layout_height="wrap_content"
|
|
android:drawableLeft="@drawable/start"
|
|
android:drawablePadding="@dimen/dp_2"
|
|
android:text="姓名"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<EditText
|
|
android:id="@+id/etPerName"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/shape_phone_bg"
|
|
android:gravity="right|center_vertical"
|
|
android:paddingLeft="@dimen/dp_10"
|
|
android:paddingRight="@dimen/dp_10"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"
|
|
tools:text="王海生"></EditText>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_14"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_70"
|
|
android:layout_height="wrap_content"
|
|
android:drawableLeft="@drawable/start"
|
|
android:drawablePadding="@dimen/dp_2"
|
|
android:text="身份证"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<EditText
|
|
android:id="@+id/etPerId"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/shape_phone_bg"
|
|
android:gravity="right|center_vertical"
|
|
android:paddingLeft="@dimen/dp_10"
|
|
android:paddingRight="@dimen/dp_10"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"
|
|
tools:text="412826196205220056"></EditText>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_14"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_100"
|
|
android:layout_height="wrap_content"
|
|
android:drawableLeft="@drawable/start"
|
|
android:drawablePadding="@dimen/dp_2"
|
|
android:text="有效开始日期"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<TextView
|
|
android:id="@+id/tvPerStart"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/shape_phone_bg"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请选择开始日期"
|
|
android:paddingLeft="@dimen/dp_10"
|
|
android:paddingRight="@dimen/dp_10"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"
|
|
tools:text="1990-05-24"></TextView>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_14"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_100"
|
|
android:layout_height="wrap_content"
|
|
android:drawableLeft="@drawable/start"
|
|
android:drawablePadding="@dimen/dp_2"
|
|
android:text="有效结束日期"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<TextView
|
|
android:id="@+id/tvPerEnd"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/shape_phone_bg"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请选择结束日期"
|
|
android:paddingLeft="@dimen/dp_10"
|
|
android:paddingRight="@dimen/dp_10"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"
|
|
tools:text="1990-05-24"></TextView>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginLeft="@dimen/dp_15"
|
|
android:layout_marginTop="@dimen/dp_15"
|
|
android:layout_marginRight="@dimen/dp_15"
|
|
app:cardBackgroundColor="@color/white"
|
|
app:cardCornerRadius="@dimen/dp_8">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/dp_16">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_16"
|
|
android:text="上传本人银行卡"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_16"></TextView>
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/ivBank"
|
|
android:layout_width="@dimen/dp_155"
|
|
android:layout_height="@dimen/dp_97"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="@dimen/dp_20"
|
|
android:background="@drawable/bank_card"></ImageView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_26"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_90"
|
|
android:layout_height="wrap_content"
|
|
android:text="银行卡号"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<EditText
|
|
android:id="@+id/etPerBankId"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_marginRight="@dimen/dp_8"
|
|
android:layout_weight="1"
|
|
android:background="@null"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请输入银行卡号"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></EditText>
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_14"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="@dimen/dp_70"
|
|
android:layout_height="wrap_content"
|
|
android:text="开户银行"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></TextView>
|
|
|
|
<EditText
|
|
android:id="@+id/tvPerBankName"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_34"
|
|
android:layout_marginLeft="@dimen/dp_10"
|
|
android:layout_marginRight="@dimen/dp_8"
|
|
android:layout_weight="1"
|
|
android:background="@null"
|
|
android:gravity="right|center_vertical"
|
|
android:hint="请选择开户行"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_15"></EditText>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<View
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_10" />
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_70"
|
|
android:background="@color/white"
|
|
android:gravity="center"
|
|
android:paddingLeft="@dimen/dp_15"
|
|
android:paddingRight="@dimen/dp_15">
|
|
|
|
<Button
|
|
android:id="@+id/btnOk"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_btn"
|
|
android:text="提交审核"
|
|
android:textColor="@color/white"
|
|
android:textSize="@dimen/sp_17">
|
|
|
|
</Button>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout> |