AndroidStudio之ThemecolorPrimarycolorPrimaryDarkcolorAccent详解
Posted weizhxa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AndroidStudio之ThemecolorPrimarycolorPrimaryDarkcolorAccent详解相关的知识,希望对你有一定的参考价值。
今天就来看看在Androi5.0中常用的颜色属性。
我们可以先定义一个style,然后在这个style中设定每一个Activity或者整个App的颜色,最后在清单文件中来给某个Activity设置主题即可。代码如下:
<!--状态栏颜色--> <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<!--控制各个控件被选中时的颜色--> <item name="colorAccent">@color/colorAccent</item>
<!--页面背景色--> <item name="android:windowBackground">@color/windowBackg</item>
<!--底部导航栏颜色--> <item name="android:navigationBarColor">@color/navigationColor</item>
<!--Appbar背景色--> <item name="android:colorPrimary">@color/colorPrimary</item>
<!--ToolBar上的Title颜色--> <item name="android:textColorPrimary">@color/textColorPrimary</item>
<!--各个控制控件的默认颜色--> <item name="android:colorControlNormal">@color/colorControlNormal</item>
以上是关于AndroidStudio之ThemecolorPrimarycolorPrimaryDarkcolorAccent详解的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin编程之AndroidStudio(包括3.0与2.x版本)配置与使用
Android/AndroidStudio/idea使用教程之git使用(详细)(码云)