Android 5.0 app样式

可以在res/values/styles.xml中,设置配色方案。

<resources>
    <style name="AppTheme" parent="android:ThemeOverlay.Material.ActionBar">
        <!-- Customize your theme here. -->
        <item name="android:colorAccent">@color/color_Accent</item>
        <item name="android:colorPrimary">@color/color_Primary</item>
        <item name="android:colorPrimaryDark">@color/color_PrimaryDark</item>
        <item name="android:textColorPrimary">@color/color_textColorPrimary</item>
        <item name="android:windowBackground">@color/color_windowBackground</item>
    </style>
</resources>
原文地址:https://www.cnblogs.com/TongWee/p/4832694.html