如何在运行时更改Android中的当前主题
if (...) { getApplication().setTheme(R.style.BlackTheme);} else { getApplication().setTheme(R.style.LightTheme);}
res/values/styles.xml
<resources> <style name="LightTheme" parent="@android:style/Theme.Light"> </style> <style name="BlackTheme" parent="@android:style/Theme.Black"> </style> </resources>
setTheme
慕少森
RISEBY
相关分类