我已經爲我的應用實施了材質設計,並且我希望用戶能夠自定義colorPrimary,colorPrimaryDark和colorAccent的顏色。怎麼做?如何通過代碼動態更改主題
我想要一個設置活動,用戶可以選擇自己的顏色,並且更改將應用於我的所有活動。謝謝。
<style name="MyTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
嘿,在那裏,有一個人問過類似的問題,我發佈了一個答案,也許你會檢查它:[如何給用戶在不同顏色的皮膚之間切換的可能性 - ](http://stackoverflow.com/questions/38349187/how-to-give-the-user-the-possibility-to-switch-between-different-colors-skin-in/38350441) –