style: 统一列表项 UI 规范(textSize/颜色/间距/checkbox 资源)

- 国际出/进港所有列表项 KV 文字统一为 15sp
- 子列表 checkbox 资源由 _gray 系列改为 _style 系列
- 含子列表卡片 padding 统一为 10dp,展开按钮高度 18dp/padding 4dp
- ULD 管理状态字段"正常"改用 text_green
- 日志查询标签格式规范化(补冒号、修正 completeSpace)
- 航班管理非到达航班文字颜色改为 text_gray,保留航班号 colorPrimary 及 +1 text_red

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-26 10:02:32 +08:00
parent 56945f8488
commit 9402d895db
36 changed files with 1833 additions and 1521 deletions

View File

@@ -64,7 +64,7 @@
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="运单号:"
android:textColor="@color/weak_grey"
android:textSize="15sp"
android:textStyle="bold" />
<TextView
@@ -72,6 +72,7 @@
android:layout_height="wrap_content"
android:text="@{bean.waybillCode}"
android:textColor="@color/colorPrimary"
android:textSize="15sp"
android:textStyle="bold" />
</androidx.appcompat.widget.LinearLayoutCompat>
@@ -84,12 +85,14 @@
<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="始发站:" />
android:text="始发站:"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{bean.origin}" />
android:text="@{bean.origin}"
android:textSize="15sp" />
</androidx.appcompat.widget.LinearLayoutCompat>
@@ -101,12 +104,14 @@
<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="目的港:" />
android:text="目的港:"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{bean.dest}" />
android:text="@{bean.dest}"
android:textSize="15sp" />
</androidx.appcompat.widget.LinearLayoutCompat>
@@ -118,12 +123,14 @@
<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="代理:" />
android:text="代理:"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{bean.agent}" />
android:text="@{bean.agent}"
android:textSize="15sp" />
</androidx.appcompat.widget.LinearLayoutCompat>
@@ -135,12 +142,14 @@
<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="运单件数:" />
android:text="运单件数:"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text='@{bean.awbpc + ""}' />
android:text='@{bean.awbpc + ""}'
android:textSize="15sp" />
</androidx.appcompat.widget.LinearLayoutCompat>
@@ -160,12 +169,14 @@
<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="实到件数:" />
android:text="实到件数:"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text='@{bean.pc + ""}' />
android:text='@{bean.pc + ""}'
android:textSize="15sp" />
</androidx.appcompat.widget.LinearLayoutCompat>
@@ -177,12 +188,14 @@
<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="实到重量:" />
android:text="实到重量:"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text='@{bean.weight + ""}' />
android:text='@{bean.weight + ""}'
android:textSize="15sp" />
</androidx.appcompat.widget.LinearLayoutCompat>
@@ -194,12 +207,14 @@
<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="特码:" />
android:text="特码:"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{bean.spCode}" />
android:text="@{bean.spCode}"
android:textSize="15sp" />
</androidx.appcompat.widget.LinearLayoutCompat>
@@ -211,12 +226,14 @@
<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="业务类型:" />
android:text="业务类型:"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{bean.businessType}" />
android:text="@{bean.businessType}"
android:textSize="15sp" />
</androidx.appcompat.widget.LinearLayoutCompat>
@@ -228,12 +245,14 @@
<TextView
android:layout_width="80dp"
android:layout_height="wrap_content"
android:text="品名:" />
android:text="品名:"
android:textSize="15sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{bean.goods}" />
android:text="@{bean.goods}"
android:textSize="15sp" />
</androidx.appcompat.widget.LinearLayoutCompat>
@@ -246,9 +265,9 @@
<ImageView
android:id="@+id/iv_show"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_marginTop="10dp"
android:padding="5dp"
android:layout_height="18dp"
android:layout_marginBottom="5dp"
android:padding="4dp"
android:src="@mipmap/img_down" />
</androidx.appcompat.widget.LinearLayoutCompat>