我想创建一个Android应用程序,用户可以在其中设置自定义主题,如蓝色和红色。我创建了2 Activities
,来自Activity-1
的用户可以选择颜色。但是有可能以编程方式更改应用程序主题吗?
我的风格是:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/color_primary</item>
<item name="colorPrimaryDark">@color/color_primary_dark</item>
<item name="colorAccent">@color/accent_color</item>
</style>
<style name="RedTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/color_red</item>
<item name="colorPrimaryDark">@color/color_red</item>
<item name="colorAccent">@color/color_red</item>
</style>
我的工具栏
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:background="@color/color_primary"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize">
</android.support.v7.widget.Toolbar>
我尝试使用setTheme(R.style.RedTheme)
,但它不会更改工具栏颜色。
请建议我。
谢谢。
答案 0 :(得分:0)
当您无法创建活动时使用此选项:
if (...) {
getApplication().setTheme(R.style.BlackTheme);
} else {
getApplication().setTheme(R.style.LightTheme);
}