|
|
@@ -430,6 +430,123 @@ |
|
|
|
android:layout_height="@dimen/dp_16"
|
|
|
|
android:src="@mipmap/ic_next_gray" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/divider_gray" />
|
|
|
|
|
|
|
|
<!-- 车辆所有人 -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/dp_50"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="·车辆所有人"
|
|
|
|
android:textColor="@color/black"
|
|
|
|
android:textSize="@dimen/sp_14" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tv_vehicle_owner_name"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_marginStart="@dimen/dp_20"
|
|
|
|
android:text="暂无"
|
|
|
|
android:textColor="@color/text_gray"
|
|
|
|
android:textSize="@dimen/sp_14" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/divider_gray" />
|
|
|
|
|
|
|
|
<!-- 行驶证照片 -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginTop="@dimen/dp_10">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="·行驶证照片"
|
|
|
|
android:textColor="@color/black"
|
|
|
|
android:textSize="@dimen/sp_14"
|
|
|
|
android:layout_marginBottom="@dimen/dp_10" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/dp_155"
|
|
|
|
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/iv_veh_pos_img"
|
|
|
|
android:layout_width="87.5dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:src="@mipmap/identity_card1" />
|
|
|
|
|
|
|
|
<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/iv_veh_neg_img"
|
|
|
|
android:layout_width="87.5dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:src="@mipmap/identity_card1" />
|
|
|
|
|
|
|
|
<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>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<!-- 卡信息 -->
|