Android的style.xml
文件通常是这样的
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
默认的定义了三个颜色colorPrimary
、colorPrimaryDark
、colorAccent
。
其实还有其他一些颜色可设置:
TextColorPrimary
windowBackground
navigationBarColor
看名字就分别是字体颜色、窗口背景颜色、导航条颜色(底部三个虚拟导航按钮)