1. 程式人生 > >Android 設定應用程式的主題顏色

Android 設定應用程式的主題顏色

1.首先了解一下Material Design 各個屬性在應用程式的定義


2.在color.xml檔案中定義以上顏色值

<resources>
    <color name="colorPrimary">#3F51B5</color>
    <color name="colorPrimaryDark">#303F9F</color>
    <color name="colorAccent">#29b6f6</color>
</resources>

3.在style.xml中建立自己的主題
<!-- 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>
4.將主題設定到應用程式中
 android:theme="@style/AppTheme"
上面程式碼可以在清單檔案中統一設定