我试图通过以下代码以编程方式更改“AppBar Layout”中的ActionBar颜色:
toolbar.setBackgroundColor(R.color.hidden_bars); //#464445
但每次我以不同的颜色结束时,colorPrimary(#48bee6)的颜色较深(<48bee6)
这是我的xml:
<android.support.design.widget.AppBarLayout
android:id="@+id/id_appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="enterAlwaysCollapsed" />
<android.support.design.widget.TabLayout
android:id="@+id/tabLayout"
style="@style/WenoTabLayout"
android:layout_width="match_parent"
android:layout_height="@dimen/tab_bar_height"
android:layout_marginTop="1dp"
android:background="@color/white"
app:tabGravity="fill"
app:tabMode="fixed" />
</android.support.design.widget.AppBarLayout>
答案 0 :(得分:1)
这是对setBackgroundColor(int)
的常见误解。传递给setBackgroundColor
的int值应该是颜色代码而不是颜色资源ID。你应该首先通过id获取颜色代码。
// Use this instead of context if you are in activity
int color = ContextCompat.getColor(context, R.color.your_color);
toolbar.setBackgroundColor(color);