编程语言
首页 > 编程语言> > android – 以编程方式设置工具栏图标颜色

android – 以编程方式设置工具栏图标颜色

作者:互联网

如何以编程方式在工具栏/ AppBarLayout中设置图标的颜色(主页和溢出菜单图标)?

我想更改活动中单个片段的工具栏颜色方案.将AppBarLayout的背景设置为浅色(例如浅灰色,带有appBarLayout.setBackgroundResource(..);)会产生白色图标和白色标题,几乎看不到.

其布局如下:

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fitsSystemWindows="true">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:theme="@style/ToolbarStyle"
        app:layout_scrollFlags="scroll|enterAlways"/>

</android.support.design.widget.AppBarLayout>

Solution found

解决方法:

支持23更改溢出图标很容易.这是Lorne Laliberte answer的方法

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是一个很好的帖子来改变所有工具栏图标的颜色.

希望这可以帮助!!

标签:android,material-design,android-toolbar,android-appbarlayout
来源: https://codeday.me/bug/20190717/1488272.html