fix: 灰色文字提亮 + 备注加图标

1. text_secondary 颜色 #999999 → #CCCCCC(深色背景上更清晰)
2. 备注文字前加 ⚠ 图标,提醒用户注意

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
dongliang
2026-05-06 16:26:33 +09:30
parent 1657ecd917
commit 05f5d5e098
2 changed files with 2 additions and 2 deletions

View File

@@ -332,7 +332,7 @@ class TaskListFragment : BaseFragment<FragmentTaskListBinding>() {
else -> null
}
if (note != null) {
binding.tvNote.text = note
binding.tvNote.text = "\u26A0 $note" // ⚠ + 备注内容
binding.tvNote.visibility = View.VISIBLE
}
}

View File

@@ -20,7 +20,7 @@
<!-- 文字色 -->
<color name="text_primary">#FFFFFFFF</color>
<color name="text_secondary">#FF999999</color>
<color name="text_secondary">#FFCCCCCC</color>
<color name="text_placeholder">#FF808080</color>
<color name="text_disabled">#FFC0C0C0</color>