colorPrimaryDark代表屏幕最上方的那一小块区域
这两部分的内容都可以被更改
方法一:
在app/scr/res/values/colors中可以定义颜色属性,然后在app/scr/res/values/styles中可以直接在所需更改的部分调用相应的定义好的颜色
colors.xml
<?xml version&#61;"1.0" encoding&#61;"utf-8"?>
<resources><color name&#61;"colorPrimary">#008577</color><color name&#61;"colorPrimaryDark">#00574B</color><color name&#61;"colorAccent">#D81B60</color><color name&#61;"colorMian">#d43433</color>
</resources>
在该段代码中&#xff0c;item项即被定义的颜色和标志&#xff08;在system.xml中调用&#xff09;
styles.xml
<resources><!-- Base application theme. --><style name&#61;"AppTheme" parent&#61;"Theme.AppCompat.Light.DarkActionBar"><!-- Customize your theme here. --><item name&#61;"colorPrimary">&#64;color/colorPrimary</item><item name&#61;"colorPrimaryDark">&#64;color/colorPrimaryDark</item><item name&#61;"colorAccent">&#64;color/colorAccent</item></style></resources>
第一种方法就是在该段代码中直接通过修改colorPrimary、colorPrimaryDark等其他的颜色属性来个更改屏幕上显示的颜色
这种颜色是选择主题时自带的颜色&#xff0c;我们通过在color.xml中定义一种红色&#xff0c;并在style.xml中更改颜色属性来观察结果
修改的代码
color.xml
<color name&#61;"colorMian">#d43433</color>
style.xml
<resources><!-- Base application theme. --><style name&#61;"AppTheme" parent&#61;"Theme.AppCompat.Light.DarkActionBar"><!-- Customize your theme here. --><item name&#61;"colorPrimary">&#64;color/colorMian</item><item name&#61;"colorPrimaryDark">&#64;color/colorMian</item></style></resources>
显而易见&#xff0c;在style.xml中对colorPrimary、colorPrimaryDark的指定都为colorMain(主色调)&#xff0c;现在我们来运行一下代码&#xff0c;看看效果。
因为colorPrimary、colorPrimaryDark都被指定为colorMain&#xff0c;所以屏幕顶端的显示都是主色调红色了