以编程方式更改工具栏主题

时间:2015-10-04 08:59:37

标签: android

我的代码是:

<android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?attr/colorPrimary"
        android:minHeight="?attr/actionBarSize"
        app:theme="@style/Toolbar_Theme"/>

我想在java代码中更改app:theme。 我能找到用于更改工具栏样式的toolbar.setTheme方法吗?

1 个答案:

答案 0 :(得分:-3)

您可以这样以编程方式更改它:

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);

toolbar.getContext().setTheme(R.style.ThemeOverlay_AppCompat_Dark_ActionBar);