これは私のツールバーのxmlです
<?xml version="1.0" encoding="utf-8"?>
<Android.support.v7.widget.Toolbar xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:app="http://schemas.Android.com/apk/res-auto"
Android:id="@+id/toolbar"
Android:layout_width="match_parent"
app:contentInsetEnd="0dp"
app:contentInsetStart="0dp"
Android:layout_height="@dimen/toolbar_height"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
Android:background="@color/primary_color">
</Android.support.v7.widget.Toolbar>
プログラムでapp:themeを変更したい。どうすればよいですか?
これは、プログラムまたはスタイルを使用して実行できます。
Toolbar toolbar; // your toolbar
toolbar.setBackgroundColor(newColor); // i don't tested this method. Write if it's not working
toolbar.setTitleTextColor(titleColor); // if toolbar is white set title to black, if toolbar is black set title to white
または、スタイルでそれを行うことができます:
Attrs.xmlを追加します。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<attr name="toolbarStyle" format="reference"/>
</resources>
そして、toolbar.xmlを変更します。
<?xml version="1.0" encoding="utf-8"?>
<Android.support.v7.widget.Toolbar xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:app="http://schemas.Android.com/apk/res-auto"
Android:id="@+id/toolbar"
Android:layout_width="match_parent"
app:contentInsetEnd="0dp"
app:contentInsetStart="0dp"
Android:layout_height="@dimen/toolbar_height"
app:theme="?attr/toolbarStyle"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
Android:background="@color/primary_color">
</Android.support.v7.widget.Toolbar>
そして、styles.xml(これがない場合は作成します):
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyStyle.Dark" parent="AppCompat.Theme">
<item name="toolbarStyle">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
</style>
<style name="MyStyle.Light" parent="AppCompat.Theme.Light">
<item name="toolbarStyle">@style/ThemeOverlay.AppCompat.Light.ActionBar</item>
</style>
</resources>
(スタイル付きの)2番目のメソッドを選択する場合は、アクティビティを再開して、super.onCreate()の前にsetThemeメソッドを使用する必要があります。
お役に立てば幸いです。
テーマを追加するには、次のコードスニペットを使用します。
Toolbar toolbar;
toolbar.getContext().setTheme(R.style.ThemeOverlay_AppCompat_Dark_ActionBar);