如何更改Android Lollipop概述/最近/多任务textColor

时间:2014-12-15 02:43:28

标签: xml android-5.0-lollipop android-styles

如何更改应用最近的文字颜色" card"在棒棒糖?

以下做工作:

<item name="android:textColorPrimary">#ffffff</item>
<item name="android:textColor">#171717</item>

enter image description here

1 个答案:

答案 0 :(得分:1)

经过反复试验,我找到了答案。

Android“自动生成”基于styles.xml中原色的白色(或黑色)文字。谷歌以这种方式处理它是非常蹩脚的,因为使用某些颜色背景可能仍然看起来很好用白色文字。

<强>资源/值/ styles.xml

<style name="AppTheme" parent="Theme.Something">
    ...
    <item name="colorPrimary">@color/primary</item> <!-- Must be dark enough to make android generate white text -->
    ...
</style>