95 lines
3.5 KiB
XML
95 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/pop_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="@dimen/dp_43"
|
|
android:background="@drawable/bg_bai"
|
|
android:layout_marginLeft="@dimen/dp_12"
|
|
android:layout_marginRight="@dimen/dp_12"
|
|
android:paddingTop="@dimen/dp_10">
|
|
|
|
<ImageView
|
|
android:id="@+id/img"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_200"
|
|
android:src="@drawable/car"/>
|
|
|
|
<LinearLayout
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
android:layout_marginLeft="@dimen/dp_12"
|
|
android:layout_marginRight="@dimen/dp_12"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="*"
|
|
android:textColor="@color/red"
|
|
android:textSize="@dimen/sp_12"/>
|
|
<TextView
|
|
android:id="@+id/tv_ts"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="请按照如图所示拍摄或选择装卸货照片,装卸货照片包含车牌号、三分之二车身或者装卸货场景。"
|
|
android:textSize="@dimen/sp_12"/>
|
|
</LinearLayout>
|
|
|
|
|
|
<Button
|
|
android:id="@+id/btn_xiangce"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="相册"
|
|
android:textColor="#000"
|
|
android:textSize="@dimen/sp_15"
|
|
android:background="@null"
|
|
android:visibility="gone"
|
|
/>
|
|
|
|
<View
|
|
android:id="@+id/v_1"
|
|
android:layout_marginLeft="@dimen/dp_18"
|
|
android:layout_marginRight="@dimen/dp_18"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_1"
|
|
android:background="#EEEEEE"
|
|
android:visibility="gone"/>
|
|
|
|
<Button
|
|
android:id="@+id/btn_paizhao"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="拍照"
|
|
android:textColor="#000"
|
|
android:textSize="@dimen/sp_15"
|
|
android:background="@null"/>
|
|
|
|
<View
|
|
android:layout_marginLeft="@dimen/dp_18"
|
|
android:layout_marginRight="@dimen/dp_18"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_1"
|
|
android:background="#EEEEEE" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_quxiao"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="取消"
|
|
android:textColor="#ff999999"
|
|
android:textSize="@dimen/sp_15"
|
|
android:textStyle="normal"
|
|
android:background="@null"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |