123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739 |
- <?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/background_color"
- android:orientation="vertical">
-
- <com.hjq.bar.TitleBar
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- app:leftIcon="@mipmap/back_black"
- app:lineVisible="false"
- app:title="更换卡签" />
-
- <androidx.core.widget.NestedScrollView
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:animateLayoutChanges="true"
- android:animationCache="true"
- android:orientation="vertical"
- android:paddingTop="@dimen/dp_15"
- android:paddingHorizontal="@dimen/dp_15">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:layout_marginBottom="@dimen/dp_15"
- android:paddingHorizontal="@dimen/dp_5"
- android:visibility="visible"
- tools:ignore="UseCompoundDrawables">
-
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@mipmap/tips" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/dp_10"
- android:text="请仔细核对用户车辆信息,确认无误后,点击下一步"
- android:textColor="#FA8C16"
- android:textSize="@dimen/sp_10" />
- </LinearLayout>
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/dp_14"
- android:layout_marginBottom="@dimen/dp_12"
- android:text="选择类型"
- android:visibility="gone"
- android:textColor="#333333"
- android:textSize="@dimen/sp_16" />
-
- <LinearLayout
- android:id="@+id/layout9"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/home_search_bar_gray_bg2"
- android:orientation="vertical"
- android:paddingHorizontal="@dimen/dp_15"
- android:paddingBottom="@dimen/dp_15">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_140"
- android:gravity="center">
-
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="@dimen/dp_120"
- android:layout_weight="1"
- android:background="@drawable/home_unm_bg2"
- android:orientation="vertical"
- android:visibility="visible">
-
- <ImageView
- android:id="@+id/image1"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_gravity="center"
- android:layout_weight="1"
- android:src="@mipmap/identity_card1"
- tools:ignore="NestedWeights" />
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_30"
- android:background="@drawable/home_unm_bg3"
- android:gravity="center"
- android:text="行驶证主页"
- android:textColor="#FFFFFF"
- android:textSize="@dimen/sp_12" />
-
- </LinearLayout>
-
- <View
- android:layout_width="@dimen/dp_20"
- android:layout_height="0dp" />
-
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="@dimen/dp_120"
- android:layout_weight="1"
- android:background="@drawable/home_unm_bg2"
- android:orientation="vertical"
- android:visibility="visible">
-
- <ImageView
- android:id="@+id/image2"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_gravity="center"
- android:layout_weight="1"
- android:src="@mipmap/identity_card2"
- tools:ignore="NestedWeights" />
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_30"
- android:background="@drawable/home_unm_bg3"
- android:gravity="center"
- android:text="行驶证副业"
- android:textColor="#FFFFFF"
- android:textSize="@dimen/sp_12" />
-
- </LinearLayout>
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:visibility="gone">
-
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="@dimen/dp_120"
- android:layout_weight="1"
- android:background="@drawable/home_unm_bg2"
- android:orientation="vertical"
- android:visibility="visible">
-
- <ImageView
- android:id="@+id/image3"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_gravity="center"
- android:layout_weight="1"
- android:paddingHorizontal="@dimen/dp_5"
- android:src="@mipmap/identity_card3"
- tools:ignore="NestedWeights" />
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_30"
- android:background="@drawable/home_unm_bg3"
- android:gravity="center"
- android:text="上传车头照"
- android:textColor="#FFFFFF"
- android:textSize="@dimen/sp_12" />
-
- </LinearLayout>
-
- <View
- android:layout_width="@dimen/dp_20"
- android:layout_height="0dp" />
-
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="@dimen/dp_120"
- android:layout_weight="1"
- android:orientation="vertical">
-
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:src="@mipmap/perch" />
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_30"
- android:gravity="center"
- android:text="车头照示例"
- android:textColor="#666666"
- android:textSize="@dimen/sp_12" />
-
- </LinearLayout>
-
- </LinearLayout>
-
- </LinearLayout>
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/dp_12"
- android:text="车辆信息如下:"
- android:textColor="#333333"
- android:textSize="@dimen/sp_16" />
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/dp_12"
- android:orientation="vertical">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:background="#FFFFFF"
- android:paddingHorizontal="@dimen/dp_12"
- android:gravity="center_vertical">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="车牌号"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text1"
- style="@style/EditTextStyle"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请输入车牌号"
- android:enabled="false"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:paddingHorizontal="@dimen/dp_12"
- android:background="#FFFFFF">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="车辆类型"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text2"
- style="@style/EditTextStyle"
- android:enabled="false"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请选择车辆类型"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:paddingHorizontal="@dimen/dp_12"
- android:background="#FFFFFF">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="所有人"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text3"
- android:enabled="false"
- style="@style/EditTextStyle"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请输入所有人"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:paddingHorizontal="@dimen/dp_12"
- android:background="#FFFFFF">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="核定载人数"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text4"
- android:enabled="false"
- style="@style/EditTextStyle"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请输入核定载人数"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="@dimen/dp_20"
- android:text="人" />
-
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/layout1"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:paddingHorizontal="@dimen/dp_12"
- android:background="#FFFFFF"
- tools:visibility="visible">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="总质量"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text5"
- android:enabled="false"
- style="@style/EditTextStyle"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请输入总质量"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true"
- app:regexType="number" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="@dimen/dp_20"
- android:text="kg" />
-
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/layout2"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:paddingHorizontal="@dimen/dp_12"
- android:background="#FFFFFF"
- tools:visibility="visible">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="整备质量"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text6"
- android:enabled="false"
- style="@style/EditTextStyle"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请输入整备质量"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true"
- app:regexType="number" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="@dimen/dp_20"
- android:text="kg" />
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:paddingHorizontal="@dimen/dp_12"
- android:background="#FFFFFF">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="外廓尺寸"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text7"
- android:enabled="false"
- style="@style/EditTextStyle"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请输入外廓尺寸"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="@dimen/dp_20"
- android:text="mm" />
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:paddingHorizontal="@dimen/dp_12"
- android:background="#FFFFFF">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="品牌型号"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text8"
- android:enabled="false"
- style="@style/EditTextStyle"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请输入行驶证品牌型号"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:paddingHorizontal="@dimen/dp_12"
- android:background="#FFFFFF">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="车辆识别代号"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text9"
- android:enabled="false"
- style="@style/EditTextStyle"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请输入车辆识别代号"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:paddingHorizontal="@dimen/dp_12"
- android:background="#FFFFFF">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="发动机号码"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text10"
- android:enabled="false"
- style="@style/EditTextStyle"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请输入发动机号码"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/layout3"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:background="#FFFFFF"
- android:paddingHorizontal="@dimen/dp_12"
- tools:visibility="visible">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="核定载质量"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text11"
- android:enabled="false"
- style="@style/EditTextStyle"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1.5"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请输入核定载质量"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true"
- app:regexType="number" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="@dimen/dp_20"
- android:text="kg" />
-
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/layout5"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:background="#FFFFFF"
- android:paddingHorizontal="@dimen/dp_12"
- tools:visibility="visible">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="准牵引总质量"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <com.hjq.widget.view.ClearEditText
- android:id="@+id/text12"
- android:enabled="false"
- style="@style/EditTextStyle"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1.8"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请输入准牵引总质量"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="@dimen/dp_20"
- android:text="kg" />
-
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/layout4"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:background="#FFFFFF"
- android:paddingHorizontal="@dimen/dp_12"
- tools:visibility="visible">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="车轴数"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <androidx.appcompat.widget.AppCompatTextView
- android:id="@+id/text13"
- style="@style/EditTextStyle"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请选择车轴数"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:paddingHorizontal="@dimen/dp_12"
- android:background="#FFFFFF">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="发证日期"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <androidx.appcompat.widget.AppCompatTextView
- android:id="@+id/text14"
- style="@style/EditTextStyle"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请选择发证日期"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/layout90"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:background="#FFFFFF"
- android:paddingHorizontal="@dimen/dp_12"
- android:visibility="visible">
-
- <TextView
- android:layout_width="@dimen/dp_110"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:text="车辆用户类型"
- android:textSize="@dimen/sp_14"
- tools:ignore="UseCompatTextViewDrawableXml" />
-
- <androidx.appcompat.widget.AppCompatTextView
- android:id="@+id/text15"
- style="@style/EditTextStyle"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请选择车辆用户类型"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_45"
- android:background="#FFFFFF"
- android:visibility="gone">
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/dp_20"
- android:text="服务场景"
- android:textColor="#333333"
- android:textSize="15sp" />
-
- <androidx.appcompat.widget.AppCompatTextView
- android:id="@+id/text16"
- style="@style/EditTextStyle"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:drawablePadding="@dimen/dp_15"
- android:hint="请选择服务场景"
- android:paddingHorizontal="@dimen/dp_20"
- android:singleLine="true" />
-
- </LinearLayout>
-
- </LinearLayout>
-
-
- <Button
- android:id="@+id/btnNext"
- style="@style/BtnShortStyle"
- android:layout_width="@dimen/dp_150"
- android:layout_height="@dimen/dp_40"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:layout_gravity="center"
- android:layout_marginTop="@dimen/dp_40"
- android:layout_marginBottom="@dimen/dp_30"
- android:text="下一步"
- android:textSize="@dimen/sp_14" />
-
- </LinearLayout>
- </androidx.core.widget.NestedScrollView>
- </LinearLayout>
|