You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.5 KiB
XML
104 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<data>
|
|
<variable
|
|
name="item"
|
|
type="com.example.aucma_mes.entity.RecordExceptionProcess" />
|
|
</data>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:background="@drawable/item_1"
|
|
android:orientation="vertical">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="30dp"
|
|
android:layout_marginTop="1dp"
|
|
android:orientation="horizontal">
|
|
<TextView
|
|
style="@style/item_text_style"
|
|
android:layout_width="80dp"
|
|
android:layout_height="match_parent"
|
|
android:text="箱体码" />
|
|
|
|
<View
|
|
android:layout_width="2dp"
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/white" />
|
|
|
|
<TextView
|
|
style="@style/item_text_style"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
|
|
android:text="@{item.boxBarcode}" />
|
|
|
|
</LinearLayout>
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:background="@color/white" />
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="30dp"
|
|
android:layout_marginTop="1dp"
|
|
android:orientation="horizontal">
|
|
<TextView
|
|
style="@style/item_text_style"
|
|
android:layout_width="80dp"
|
|
android:layout_height="match_parent"
|
|
android:text="型号" />
|
|
|
|
<View
|
|
android:layout_width="2dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white" />
|
|
|
|
<TextView
|
|
style="@style/item_text_style"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="@{item.materialModel}" />
|
|
|
|
</LinearLayout>
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:background="@color/white" />
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="30dp"
|
|
android:layout_marginTop="1dp"
|
|
android:orientation="horizontal">
|
|
<TextView
|
|
style="@style/item_text_style"
|
|
android:layout_width="80dp"
|
|
android:layout_height="match_parent"
|
|
android:text="班组" />
|
|
|
|
<View
|
|
android:layout_width="2dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white" />
|
|
|
|
<TextView
|
|
style="@style/item_text_style"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="@{item.teamName}" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</layout> |