我正嘗試做這種編程方式更改的工具欄背景顏色:更改工具欄的背景色編程不改變工具欄標題背景顏色
getSupportActionBar().setBackgroundDrawable(newColorDrawable(getResources().getColor(R.color.test_color_blue)));
這是結果:
前:
後:
一些如何工具欄標題仍然具有與以前相同的背景顏色。
這裏是我的工具欄的xml:
<android.support.v7.widget.Toolbar 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:gravity="center_vertical"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/Theme.Toolbar">
這裏是主題:
<style name="Theme.Toolbar" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="android:maxHeight">@dimen/abc_action_bar_default_height_material</item>
<item name="android:background">@color/primary</item>
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primary_dark</item>
<item name="colorAccent">@android:color/white</item>
<item name="titleTextAppearance">@style/Theme.Toolbar.Title</item>
</style>
您是否在styles.xml中爲操作欄應用了任何自定義樣式,可能其中一些是衝突的。 – Harry 2015-04-06 09:10:54
張貼您的佈局xml請 – 2015-04-06 14:27:36
@DavidJhons我已經發布了有關問題的新細節 – EkKoZ 2015-04-06 15:11:47