60 lines
2.1 KiB
XML
60 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<data>
|
|
<import type="android.view.View" />
|
|
<variable
|
|
name="bean"
|
|
type="com.lukouguoji.module_base.bean.AssembleWaybillBean" />
|
|
<variable
|
|
name="position"
|
|
type="Integer" />
|
|
</data>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:paddingVertical="12dp"
|
|
android:paddingHorizontal="8dp"
|
|
android:background="@color/white">
|
|
|
|
<!-- 序号 -->
|
|
<TextView
|
|
android:layout_width="40dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{String.valueOf(position + 1)}"
|
|
android:textColor="@{bean.isMarked ? @color/text_red : @color/text_normal}"
|
|
android:textSize="14sp"
|
|
android:gravity="center" />
|
|
|
|
<!-- 运单号 -->
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@{bean.waybillNo}"
|
|
android:textColor="@{bean.isMarked ? @color/text_red : @color/text_normal}"
|
|
android:textSize="14sp" />
|
|
|
|
<!-- 件数 -->
|
|
<TextView
|
|
android:layout_width="60dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{bean.pieces}"
|
|
android:textColor="@{bean.isMarked ? @color/text_red : @color/text_normal}"
|
|
android:textSize="14sp"
|
|
android:gravity="center" />
|
|
|
|
<!-- 重量 -->
|
|
<TextView
|
|
android:layout_width="80dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{bean.weight}"
|
|
android:textColor="@{bean.isMarked ? @color/text_red : @color/text_normal}"
|
|
android:textSize="14sp"
|
|
android:gravity="end" />
|
|
</LinearLayout>
|
|
</layout>
|