1

我想在我的应用程序中使用两种样式:android:Theme.Black 和 android:Theme.Light。在我的应用程序中,用户可以在安装和运行应用程序时选择样式。

我的问题:如何在运行时更改应用程序的样式?这对我来说非常重要。非常非常感谢

PS Style 定义在 res/values/styles.xml

4

1 回答 1

0

我解决了:

getApplication().setTheme(R.style.BlackTheme);

/res/values/styles.xml

<resources>
    <style name="BlackTheme" parent="@android:style/Theme.Black">
    </style>    
</resources>
于 2013-05-01T19:22:46.807 回答