android-什么是ColorPrimaryLight,如何使用?
作者:互联网
我将其作为Material Design Color Platte生成的颜色之一.
但是在此图像中:
我在任何地方都看不到colorPrimaryLight.它的作用是什么,我该如何声明?是否以我的风格这样声明?:
<item name="colorPrimaryLight">@color/colorPrimaryLight</item>
还是以其他方式声明它?它是做什么用的?
解决方法:
默认情况下,statusBarColor设置为colorPrimaryDark.如果要将colorPrimaryLight用于状态栏,则需要将android:statusBarColor设置为android:colorPrimaryLight.
https://developer.android.com/training/material/theme.html
在您的资源文件中:
<颜色名称=“ colorPrimaryLight”>#D1C4E9< / color>
在您的样式文件中输入:
< item name =“ colorPrimaryLight”> @ color / colorPrimaryLight< / item>
标签:material-design,android-styles,android 来源: https://codeday.me/bug/20191026/1938885.html