90 lines
3.2 KiB
XML
90 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<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="36dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:background="@color/white"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingHorizontal="8dp"
|
|
android:paddingVertical="4dp">
|
|
|
|
<!-- 选择标记 -->
|
|
<ImageView
|
|
android:id="@+id/iv_select_icon"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:layout_marginStart="22dp"
|
|
android:layout_marginEnd="22dp"
|
|
android:src="@{bean.isSelected.get() ? @drawable/ic_red_checkbox : @drawable/bg_circle_gray}" />
|
|
|
|
<!-- 运单号 -->
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:text="@{bean.waybillNo}"
|
|
android:textColor="@{bean.isMarked ? @color/text_red : @color/text_normal}"
|
|
android:textSize="14sp" />
|
|
|
|
<!-- 件数 -->
|
|
<TextView
|
|
android:layout_width="120dp"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="@{bean.pieces}"
|
|
android:textColor="@{bean.isMarked ? @color/text_red : @color/text_normal}"
|
|
android:textSize="14sp" />
|
|
|
|
<!-- 重量 -->
|
|
<TextView
|
|
android:layout_width="120dp"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="@{bean.weight}"
|
|
android:textColor="@{bean.isMarked ? @color/text_red : @color/text_normal}"
|
|
android:textSize="14sp" />
|
|
|
|
<!-- 配载航班 -->
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1.2"
|
|
android:gravity="center"
|
|
android:text="@{bean.fLightInfo}"
|
|
android:textColor="@{bean.isMarked ? @color/text_red : @color/text_normal}"
|
|
android:textSize="14sp" />
|
|
</LinearLayout>
|
|
|
|
<!-- 分割线 -->
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/line" />
|
|
|
|
</LinearLayout>
|
|
</layout>
|