android - 什么是ColorPrimaryLight以及如何使用它?-LMLPHP
我得到这个作为我的颜色之一生成的Material Design Color Platte
但在这张图片中:
android - 什么是ColorPrimaryLight以及如何使用它?-LMLPHP
我看不到任何地方。它是用来做什么的?我怎么申报?按我的方式申报吗?:

<item name="colorPrimaryLight">@color/colorPrimaryLight</item>

还是我要用不同的方式申报?它是用来干什么的?

最佳答案

默认情况下,StatusBarColor设置为ColorPrimaryDark。如果要对状态栏使用colorprimarylight,则需要将android:statusbarcolor设置为android:colorprimarylight。
https://developer.android.com/training/material/theme.html
在资源文件中输入:
<color name="colorPrimaryLight">#D1C4E9</color>
在样式文件中输入:
<item name="colorPrimaryLight">@color/colorPrimaryLight</item>

10-07 22:28