fix: 灰色文字提亮 + 备注加图标
1. text_secondary 颜色 #999999 → #CCCCCC(深色背景上更清晰) 2. 备注文字前加 ⚠ 图标,提醒用户注意 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -332,7 +332,7 @@ class TaskListFragment : BaseFragment<FragmentTaskListBinding>() {
|
|||||||
else -> null
|
else -> null
|
||||||
}
|
}
|
||||||
if (note != null) {
|
if (note != null) {
|
||||||
binding.tvNote.text = note
|
binding.tvNote.text = "\u26A0 $note" // ⚠ + 备注内容
|
||||||
binding.tvNote.visibility = View.VISIBLE
|
binding.tvNote.visibility = View.VISIBLE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
<!-- 文字色 -->
|
<!-- 文字色 -->
|
||||||
<color name="text_primary">#FFFFFFFF</color>
|
<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_placeholder">#FF808080</color>
|
||||||
<color name="text_disabled">#FFC0C0C0</color>
|
<color name="text_disabled">#FFC0C0C0</color>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user