123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/md_grey_100"
- android:orientation="vertical">
- <View
- android:layout_width="match_parent"
- android:layout_height="10dp"
- android:background="@color/md_grey_100" />
- <LinearLayout
- android:id="@+id/ll_storage_info"
- 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_white_et"
- android:gravity="center_vertical"
- android:orientation="vertical"
- android:paddingBottom="5dp"
- android:paddingTop="5dp"
- android:paddingLeft="10dp"
- android:paddingRight="10dp">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="5dp"
- android:paddingTop="5dp"
- android:orientation="horizontal">
- <TextView
- style="@style/tvLeftStyle"
- android:text="排舱编号" />
- <TextView
- style="@style/tvLeftStyle"
- android:text=":" />
- <com.fxy.baselibrary.views.MarqueeTextView
- android:id="@+id/mt_outbound_number"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:enabled="false"
- android:ellipsize="marquee"
- android:focusable="true"
- android:singleLine="true"
- android:gravity="center_vertical"
- android:textColor="@color/black_3d3d3d"
- android:textSize="@dimen/t24"
- />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="5dp"
- android:paddingTop="5dp"
- android:orientation="horizontal">
- <TextView
- style="@style/tvLeftStyle"
- android:text="订单数量" />
- <TextView
- style="@style/tvLeftStyle"
- android:text=":" />
- <com.fxy.baselibrary.views.MarqueeTextView
- android:id="@+id/mt_order_qty"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:enabled="false"
- android:ellipsize="marquee"
- android:focusable="true"
- android:singleLine="true"
- android:gravity="center_vertical"
- android:textColor="@color/black_3d3d3d"
- android:textSize="@dimen/t24"
- />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="5dp"
- android:paddingTop="5dp"
- android:orientation="horizontal">
- <TextView
- style="@style/tvLeftStyle"
- android:text="货柜" />
- <TextView
- style="@style/tvLeftStyle"
- android:text=":" />
- <com.fxy.baselibrary.views.MarqueeTextView
- style="@style/mtRightStyle"
- android:id="@+id/mt_container_code"
- />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="5dp"
- android:paddingTop="5dp"
- android:orientation="horizontal">
- <TextView
- style="@style/tvLeftStyle"
- android:text="SO号" />
- <TextView
- style="@style/tvLeftStyle"
- android:text=":" />
- <com.fxy.baselibrary.views.MarqueeTextView
- style="@style/mtRightStyle"
- android:id="@+id/mt_so_number"
- />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="5dp"
- android:paddingTop="5dp"
- android:visibility="visible"
- android:orientation="horizontal">
- <TextView
- style="@style/tvLeftStyle"
- android:text="封号" />
- <TextView
- style="@style/tvLeftStyle"
- android:text=":" />
- <com.fxy.baselibrary.views.MarqueeTextView
- style="@style/mtRightStyle"
- android:id="@+id/mt_seal_number"
- />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|