Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アプリケーションで 2 つのスタイルを使用したい: android:Theme.Black と android:Theme.Light。私のアプリでは、ユーザーはアプリケーションをインストールして実行するときにスタイルを選択できます。
私の質問:実行中にアプリのスタイルを変更するにはどうすればよいですか? それは私にとって非常に重要です。どうも、どうもありがとう、
PS スタイルは res/values/styles.xml で定義されています
私はそれを解決しました:
getApplication().setTheme(R.style.BlackTheme);
/res/values/styles.xml
<resources> <style name="BlackTheme" parent="@android:style/Theme.Black"> </style> </resources>