style: 统一进港页面结束日期筛选文案并优化 PadSearchLayout 防换行

- 进港查询/出库/提取记录页第二个日期筛选 hint 统一为"请选择结束 xx 日期"
- PadSearchLayout 内部 EditText/TextView 增加 singleLine + ellipsize=end,
  textSize 14sp 调为 13sp,避免长 hint 换行、布局被撑高

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-14 13:56:04 +08:00
parent 3a9f7f07e6
commit 48ab9d6e2e
4 changed files with 8 additions and 5 deletions

View File

@@ -15,11 +15,12 @@
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@null"
android:ellipsize="end"
android:paddingStart="10dp"
android:singleLine="true"
android:textColor="@color/text_normal"
android:textColorHint="@color/text_gray_l"
android:textSize="14sp"
android:textSize="13sp"
tools:text="edittext" />
<Spinner
@@ -36,11 +37,13 @@
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:ellipsize="end"
android:gravity="center_vertical"
android:paddingStart="10dp"
android:singleLine="true"
android:textColor="@color/text_normal"
android:textColorHint="@color/text_gray_l"
android:textSize="14sp"
android:textSize="13sp"
tools:text="textView" />
<ImageView