123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:background="@color/md_grey_100"
- android:orientation="vertical">
- <ScrollView
- android:id="@+id/ll_scroll_view"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:scrollbars="none">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <View
- android:layout_width="match_parent"
- android:layout_height="4dp"
- android:background="@color/md_grey_100" />
- <View
- android:layout_width="match_parent"
- android:layout_height="4dp"
- android:background="@color/md_grey_100" />
- <LinearLayout
- style="@style/FromLinearLayoutItem"
- android:orientation="horizontal">
- <EditText
- style="@style/EditTextStyle"
- android:id="@+id/et_order_no"
- android:hint="@string/hint_please_scan_no"
- android:text=""/>
- <ImageButton
- style="@style/ClearImg"
- android:id="@+id/ib_order_no_clear"
- />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/dp_10"
- android:layout_marginRight="@dimen/dp_10"
- android:background="@null"
- android:gravity="center_vertical"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@null"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:padding="5dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="质检结果:"
- android:textColor="@color/black"
- android:textSize="@dimen/t24" />
- <RadioGroup
- android:id="@+id/radioGroup1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <RadioButton
- android:id="@+id/rb_intact"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:checked="true"
- android:onClick="onRadioButtonClicked"
- android:textSize="@dimen/t24"
- android:text="完好" />
- <RadioButton
- android:id="@+id/rb_breakage"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:onClick="onRadioButtonClicked"
- android:textSize="@dimen/t24"
- android:text="破损" />
- </RadioGroup>
- </LinearLayout>
- </LinearLayout>
- <!--全景照片-->
- <LinearLayout
- android:id="@+id/ll_panorama_area"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="5dp"
- android:paddingTop="5dp"
- android:orientation="horizontal">
- <TextView
- android:layout_marginLeft="@dimen/dp_10"
- style="@style/tvLeftStyle"
- android:text="全景照片:" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_pictures_panorama"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <include layout="@layout/fragment_show_img"/>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/md_grey_100" />
- </LinearLayout>
- </LinearLayout>
- <!--面单照片-->
- <LinearLayout
- android:id="@+id/ll_label_area"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="5dp"
- android:paddingTop="5dp"
- android:orientation="horizontal">
- <TextView
- android:layout_marginLeft="@dimen/dp_10"
- style="@style/tvLeftStyle"
- android:text="面单照片:" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_pictures_label"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <include layout="@layout/fragment_show_img"/>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/md_grey_100" />
- </LinearLayout>
- </LinearLayout>
- <!--破损照片-->
- <LinearLayout
- android:id="@+id/ll_damaged_area"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:visibility="gone"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="5dp"
- android:paddingTop="5dp"
- android:orientation="horizontal">
- <TextView
- android:layout_marginLeft="@dimen/dp_10"
- style="@style/tvLeftStyle"
- android:text="破损照片:" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_pictures_damaged"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <include layout="@layout/fragment_show_img"/>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/md_grey_100" />
- </LinearLayout>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/md_grey_100" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/bg_white_et"
- android:layout_marginLeft="@dimen/dp_10"
- android:layout_marginRight="@dimen/dp_10"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:scrollbars="vertical"
- android:paddingTop="@dimen/dp_10"
- android:paddingBottom="@dimen/dp_10"
- >
- <android.support.v7.widget.RecyclerView
- android:id="@+id/recyclerview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#fff"
- android:overScrollMode="never"/>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/dp_10"
- android:layout_marginTop="@dimen/dp_10"
- android:layout_marginRight="@dimen/dp_10"
- android:layout_marginBottom="@dimen/dp_4"
- android:background="@drawable/bg_white_et"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:padding="10dp">
- <TextView
- style="@style/fontSize"
- android:id="@+id/btn_confirm"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/dp_10"
- android:layout_marginRight="@dimen/dp_10"
- android:background="@drawable/bg_orange_item"
- android:gravity="center"
- android:text="提交"
- android:padding="10dp"
- android:textColor="@color/white"
- android:visibility="visible" />
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
- <include layout="@layout/item_float_image" />
- </LinearLayout>
|