android 以编程方式更改AppBarLayout主题

64jmpszr  于 2023-03-27  发布在  Android
关注(0)|答案(1)|浏览(152)

首先我通过xml设置AppBarLayout主题:

<android.support.design.widget.CoordinatorLayout
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="match_parent"
android:fitsSystemWindows="true">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/MyTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:popupTheme="@style/MyTheme.PopupOverlay"
        app:titleTextAppearance="@style/MyTheme.Toolbar.Title" />

其中**@style/MyTheme.AppBarOverlay**包含:

<style name="MyTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
    <item name="colorPrimary">@drawable/toolbar_background</item>
</style>

但在某些情况下,我希望以编程方式更改它,而不更改Activity的主题(仅更改AppBarLayout的主题)。
我试过这两种方法,都没有成功:
1.第一:

ActionBar actionBar = getSupportActionBar();
actionBar.getThemedContext().setTheme(R.style.MyTheme_AppBarOverlay_2);

1.第二:

AppBarLayout mAppBar = (AppBarLayout) findViewById(R.id.appbar);
mAppBar.getContext().setTheme(R.style.MyTheme_AppBarOverlay_2);
ebdffaop

ebdffaop1#

Android视图无法在展开后更改主题。您必须单独更改主题定义的每个属性。您可以使用Compose TopAppBar解决此问题,因为Compose小部件会对主题更改做出React。

相关问题