以编程方式更改工具栏中的菜单图标颜色

时间:2016-12-24 22:56:22

标签: android android-actionbar

我开发了一个应用程序,用户可以在其中更改主题。我有一个导航视图,工具栏中的菜单图标为黑色。

我想更改该图标,将其设为白色(黑色主题)。我试过这段代码,但它仍然是黑色的:

myToolbar.setTitleTextColor(Color.WHITE);
ab.setHomeAsUpIndicator(R.mipmap.ic_menu_white_24dp); //ab=ActionBar
ab.setDisplayHomeAsUpEnabled(true);

标题变为白色,但图标不会改变。

1 个答案:

答案 0 :(得分:5)

1.使用您喜欢的颜色ab.setHomeAsUpIndicator(R.drawable.ic_menu_white_new);

添加一个全新的图标

2.使用此色调

    Drawable drawable = ResourcesCompat.getDrawable(getResources(), R.drawable.ic_menu, null);
    drawable = DrawableCompat.wrap(drawable);
    DrawableCompat.setTint(drawable, Color.WHITE);
    ab.setHomeAsUpIndicator(drawable);