setTheme 没有改变工具栏
setTheme is not changing toolbars
我正在尝试使用
更改整个应用主题
@Override
protected void onCreate(Bundle savedInstanceState) {
setTheme(R.style.AppTheme_ONE);
helper = new PreferenceHelper(this);
super.onCreate(savedInstanceState);
}
基础应用程序主题。
<style name="AppTheme" parent="Theme.AppCompat.DayNight.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:textColorHint">@color/colorPrimary</item>
<item name="android:actionButtonStyle">@style/MyActionButtonStyle</item>
<item name="android:typeface">serif</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.ONE" parent="AppTheme.NoActionBar">
<item name="colorPrimary">@color/red</item>
<item name="colorPrimaryDark">@color/red_800</item>
<item name="colorAccent">@color/red_100</item>
<item name="android:textColorHint">@color/red_A700</item>
</style>
但工具栏没有任何变化:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layoutDirection="rtl"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:paddingEnd="10dp"
app:popupTheme="@style/AppTheme.PopupOverlay">
或应用中使用 colorPrimary 的任何布局。
我一直在寻找很多关于更改清单和将 settheme 放在 super.oncreate 之前的答案,但没有任何变化。
尝试将 setTheme(..) 调用放在 super.onCreate(savedInstanceState) 之后。
之后我发现如果我使用默认名称(PrimaryColor
+ PrimaryDarkColor
+ AccentColor
)你不能重写 setTheme,它在我将其更改为
(DefaultPrimary
+ DefaultPrimaryDark
+ DefaultAccent
)
我正在尝试使用
更改整个应用主题@Override
protected void onCreate(Bundle savedInstanceState) {
setTheme(R.style.AppTheme_ONE);
helper = new PreferenceHelper(this);
super.onCreate(savedInstanceState);
}
基础应用程序主题。
<style name="AppTheme" parent="Theme.AppCompat.DayNight.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:textColorHint">@color/colorPrimary</item>
<item name="android:actionButtonStyle">@style/MyActionButtonStyle</item>
<item name="android:typeface">serif</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.ONE" parent="AppTheme.NoActionBar">
<item name="colorPrimary">@color/red</item>
<item name="colorPrimaryDark">@color/red_800</item>
<item name="colorAccent">@color/red_100</item>
<item name="android:textColorHint">@color/red_A700</item>
</style>
但工具栏没有任何变化:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layoutDirection="rtl"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:paddingEnd="10dp"
app:popupTheme="@style/AppTheme.PopupOverlay">
或应用中使用 colorPrimary 的任何布局。 我一直在寻找很多关于更改清单和将 settheme 放在 super.oncreate 之前的答案,但没有任何变化。
尝试将 setTheme(..) 调用放在 super.onCreate(savedInstanceState) 之后。
之后我发现如果我使用默认名称(PrimaryColor
+ PrimaryDarkColor
+ AccentColor
)你不能重写 setTheme,它在我将其更改为
(DefaultPrimary
+ DefaultPrimaryDark
+ DefaultAccent
)