如何以编程方式在工具栏/ AppBarLayout中设置图标的颜色(主页和溢出菜单图标)?
我想更改活动中单个片段的工具栏颜色方案.将AppBarLayout的背景设置为浅色(例如浅灰色,带有appBarLayout.setBackgroundResource(..);)会产生白色图标和白色标题,几乎看不到.
其布局如下:
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/ToolbarStyle"
app:layout_scrollFlags="scroll|enterAlways"/>
解决方法:
public static void setOverflowButtonColor(final Toolbar toolbar, final int color) {
Drawable drawable = toolbar.getOverflowIcon();
if(drawable != null) {
drawable = DrawableCompat.wrap(drawable);
DrawableCompat.setTint(drawable.mutate(), color);
toolbar.setOverflowIcon(drawable);
}
}
你可以改变你的家庭,通过你的自定义drawable ..
getSupportActionBar().setHomeAsUpIndicator(R.drawable.your_drawable)
或改变它的颜色
final Drawable upArrow = getResources().getDrawable(R.drawable.abc_ic_ab_back_mtrl_am_alpha);
upArrow.setColorFilter(Color.parseColor("#FFFFFF"), PorterDuff.Mode.SRC_ATOP);
getSupportActionBar().setHomeAsUpIndicator(upArrow);
编辑:
如果你想更改更多元素here是一个很好的帖子来改变所有工具栏图标的颜色.
希望这可以帮助!!