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.
64 lines
1.9 KiB
XML
64 lines
1.9 KiB
XML
|
2 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<layout xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
|
||
|
|
<data>
|
||
|
|
<variable
|
||
|
|
name="item"
|
||
|
|
type="com.example.aucma_mes.entity.DefectBeen" />
|
||
|
|
</data>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="44dp"
|
||
|
|
android:layout_marginTop="2dp"
|
||
|
|
android:background="#DEE3E6"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/item_index"
|
||
|
|
style="@style/item_text_style"
|
||
|
|
android:layout_width="35dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text='@{item.index+""}' />
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:layout_width="2dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/white" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
style="@style/item_text_style"
|
||
|
|
android:layout_width="65dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="@{item.qualityDefectCode}" />
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:layout_width="2dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/white" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
style="@style/item_text_style"
|
||
|
|
android:layout_width="145dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
|
||
|
|
android:text="@{item.qualityDefectName}"
|
||
|
|
tools:ignore="InefficientWeight" />
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:layout_width="2dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/white" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/item_buttom"
|
||
|
|
style="@style/item_text_style"
|
||
|
|
android:layout_width="60dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="下返修"
|
||
|
|
android:textColor="#E71717" />
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
</layout>
|