主题未覆盖 textViewStyle,旧列表项未显式写 textColor 导致文字发灰、 字号与卡片边距不一。以出港运抵/组装/装载/理货为基准统一: - Key/Value 显式 15sp + text_normal,首要字段 colorPrimary 加粗, 状态值 14sp 带颜色表达式 - 卡片外边距 10dp/10dp,bg_item 统一为 bg_white_radius_8, 图标与内容区间距 15dp - 原始舱单子列表改为标准白卡片 + 表头底色,查询详情表格改用 text_normal - 修复出港查询布局 xmlns:tools 误绑 android 命名空间 - CLAUDE.md 列表项规范表同步更新为基准页真实数值 Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
331 lines
14 KiB
XML
331 lines
14 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"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<data>
|
|
|
|
<import type="android.view.View"/>
|
|
|
|
<variable
|
|
name="bean"
|
|
type="com.lukouguoji.module_base.bean.GjcInspectionBean" />
|
|
</data>
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:id="@+id/ll"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="10dp"
|
|
android:layout_marginTop="10dp"
|
|
android:background="@drawable/bg_white_radius_8"
|
|
android:orientation="horizontal"
|
|
android:paddingVertical="20dp"
|
|
android:paddingHorizontal="10dp">
|
|
<!-- 选中图标 -->
|
|
<ImageView
|
|
android:id="@+id/iv_icon"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_gravity="center"
|
|
loadImage="@{bean.checked ? @drawable/img_plane_s : @drawable/img_plane}"
|
|
android:src="@drawable/img_plane"
|
|
android:layout_marginTop="0.5px" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginLeft="15dp"
|
|
android:orientation="vertical">
|
|
|
|
<!-- 第一行数据 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<!-- 运单号 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1.2"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
completeSpace="@{4}"
|
|
android:text="运单号:"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:text="@{bean.wbNo}"
|
|
android:textColor="@color/colorPrimary"
|
|
tools:text="78109081212"
|
|
android:textStyle="bold" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
<!-- 代理人 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.8"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
completeSpace="@{4}"
|
|
android:text="代理人:"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:text='@{bean.agentCode}'
|
|
tools:text="SF"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
<!-- 特码 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.8"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
completeSpace="@{4}"
|
|
android:text="特码:"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:text="@{bean.spCode}"
|
|
tools:text="NOR"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
<!-- 预配件数 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
completeSpace="@{5}"
|
|
android:text="预配件数:"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:text='@{String.valueOf(bean.pc)}'
|
|
tools:text="11"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
<!-- 预配重量 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.7"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
completeSpace="@{5}"
|
|
android:text="预配重量:"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:text='@{String.valueOf(bean.weight)}'
|
|
tools:text="12"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
<!-- 第二行数据 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp">
|
|
|
|
<!-- 计划航班 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1.2"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
completeSpace="@{5}"
|
|
android:text="计划航班:"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:text="@{bean.flight}"
|
|
tools:text="20240216/MU2026"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
<!-- 航程 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.8"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
completeSpace="@{4}"
|
|
android:text="航程:"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:text='@{bean.range}'
|
|
tools:text="HFE - PEK"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
<!-- 预计起飞 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.8"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
completeSpace="@{5}"
|
|
android:text="预计起飞:"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:text="@{bean.scheduledTackOffHM}"
|
|
tools:text="09:12"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvDayPlus"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="4dp"
|
|
android:text="+1"
|
|
android:textColor="@color/text_red"
|
|
android:visibility="@{bean.verifyScheduledTackOffNextDay() ? View.VISIBLE : View.GONE}"
|
|
android:textSize="15sp" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
<!-- 业务类型 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
completeSpace="@{5}"
|
|
android:text="业务类型:"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:text='@{bean.businessName}'
|
|
tools:text="普通货物运输"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
<!-- 审核状态 -->
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.7"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
completeSpace="@{5}"
|
|
android:text="审核状态:"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:textStyle="bold"
|
|
tools:text="已通过"
|
|
android:textColor="@color/text_normal" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- 右侧箭头 -->
|
|
<ImageView
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_gravity="center"
|
|
android:src="@drawable/img_pda_right"
|
|
android:layout_marginLeft="10dp" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
</layout>
|