Android应用的全局颜色

2017-08-19  本文已影响47人  拒绝飞的鸟

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>

默认的定义了三个颜色colorPrimarycolorPrimaryDarkcolorAccent
其实还有其他一些颜色可设置:
TextColorPrimary windowBackground navigationBarColor
看名字就分别是字体颜色、窗口背景颜色、导航条颜色(底部三个虚拟导航按钮)

上一篇 下一篇

猜你喜欢

热点阅读