123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- <?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="match_parent"
- android:fitsSystemWindows="true"
- android:scrollbars="none">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <LinearLayout
- android:id="@+id/ll_tracking_number"
- style="@style/FromLinearLayoutItem"
- android:orientation="horizontal">
- <EditText
- style="@style/EditTextStyle"
- android:id="@+id/et_tracking_number"
- android:hint="扫描或者输入跟踪单号"
- android:text=""/>
- <ImageButton
- android:id="@+id/ib_tracking_number_clear"
- style="@style/ClearImg" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_order_number"
- style="@style/FromLinearLayoutItem"
- android:orientation="horizontal">
- <EditText
- style="@style/EditTextStyle"
- android:id="@+id/et_order_number"
- android:hint="扫描或者输入箱号"
- android:text=""/>
- <ImageButton
- android:id="@+id/ib_order_number_clear"
- style="@style/ClearImg" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_label_picture"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:visibility="visible"
- android:orientation="vertical">
- <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:padding="@dimen/dp_10"
- android:gravity="center_vertical"
- android:orientation="vertical">
- <TextView
- style="@style/fontSize"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textStyle="bold"
- android:text="面单拍照">
- </TextView>
- </LinearLayout>
- <include layout="@layout/fragment_show_img"/>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_weigh_picture"
- 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:layout_marginLeft="@dimen/dp_10"
- android:layout_marginRight="@dimen/dp_10"
- android:background="@null"
- android:padding="@dimen/dp_10"
- android:gravity="center_vertical"
- android:orientation="vertical">
- <TextView
- style="@style/fontSize"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textStyle="bold"
- android:text="内件拍照">
- </TextView>
- </LinearLayout>
- <include layout="@layout/fragment_show_img"/>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_result"
- android:layout_width="match_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:layout_marginTop="20dp"
- android:layout_marginBottom="20dp"
- android:paddingBottom="10dp"
- android:paddingTop="10dp"
- android:gravity="center"
- android:visibility="gone"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/tv_result"
- style="@style/tvLeftStyle"
- android:paddingStart="20dp"
- android:paddingEnd="20dp"
- android:textSize="50sp"/>
- </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:layout_gravity="bottom"
- 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>
- </LinearLayout>
|