Android colorPrimary colorPrimaryDark colorAccent

来源:互联网 发布:2017英国大学 知乎 编辑:程序博客网 时间:2024/05/19 22:44

Android design theme color

<style name="AppTheme.NoActionBar">    <!--状态栏颜色-->    <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></style>

这里写图片描述

Android design theme color 保存在res/values/styles.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>

color rgb值保存在res/values/colors.xml下

<?xml version="1.0" encoding="utf-8"?><resources>    <color name="colorPrimary">#3F51B5</color>    <color name="colorPrimaryDark">#000000</color>    <color name="colorAccent">#ffffff</color></resources>

附上一个关键的解说图

这里写图片描述

1 0
原创粉丝点击