fix: 修复运抵列表子项分割线颜色偏紫问题

MaterialDivider 忽略 android:background,实际渲染色始终来自
app:dividerColor(默认主题色),导致内容行分割线显示偏紫,
改用 app:dividerColor 显式指定为统一灰色

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-07-15 11:46:59 +08:00
parent cc10987a60
commit 2f875e32c9

View File

@@ -145,7 +145,7 @@
<com.google.android.material.divider.MaterialDivider
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/sub_list_divider" />
app:dividerColor="@color/sub_list_divider" />
</LinearLayout>