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
}
}