Android 設定應用程式的主題顏色
阿新 • • 發佈:2019-02-01
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中建立自己的主題
4.將主題設定到應用程式中<!-- 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>
android:theme="@style/AppTheme"
上面程式碼可以在清單檔案中統一設定