如何改变工具栏主页图标的颜色

我使用的是 android. support. v7.widget。工具栏和学习从 这篇文章如何改变颜色的汉堡包图标为白色,但向上/向后箭头仍然是深色当我调用

setDisplayHomeAsUpEnabled(true);

我怎样才能把箭也变成白色呢?

下面是我调用 setDisplayHomeAsUpEnable ()时工具栏的样子:

enter image description here

... 下面是我的 styles.xml 文件的相关部分:

<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">#194C5F</item>
<item name="colorAccent">@color/accent</item>
<item name="drawerArrowStyle">@style/WhiteDrawerIconStyle</item>
</style>


<style name="WhiteDrawerIconStyle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="spinBars">true</item>
<item name="color">@android:color/white</item>
</style>
159721 次浏览

我通过编辑 styles.xml 解决了这个问题:

<style name="ToolbarColoredBackArrow" parent="AppTheme">
<item name="android:textColorSecondary">INSERT_COLOR_HERE</item>
</style>

... 然后在活动中引用工具栏定义中的样式:

<LinearLayout
android:id="@+id/main_parent_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">


<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
app:theme="@style/ToolbarColoredBackArrow"
app:popupTheme="@style/AppTheme"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"/>

这就是你要找的。但这也改变了无线电按钮等的颜色。所以你可能需要使用一个主题。

<item name="colorControlNormal">@color/colorControlNormal</item>

这个答案也许太晚了,但我是这么做的。 设计工具栏的样式可以达到这个目的。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:layout_alignParentTop="true"
android:layout_gravity="bottom"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

在 styles.xml 中

<style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!--
-->
</style>


<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
</style>

最后,在布局中包含工具栏

<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />

我用这段代码程序化地解决了这个问题:

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);

修订1:

从 API 23(棉花糖)开始,可绘制资源 abc_ic_ab_back_mtrl_am_alpha改为 abc_ic_ab_back_material

   <!-- ToolBar -->
<style name="ToolBarTheme.ToolBarStyle"    parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="android:textColorPrimary">@android:color/white</item>
<item name="android:textColor">@color/white</item>
<item name="android:textColorPrimaryInverse">@color/white</item>
</style>

已经来不及发布了,这个工作让我改变了后退按钮的颜色

这个代码对我很有用:

public static Drawable changeBackArrowColor(Context context, int color) {
String resName;
int res;


resName = Build.VERSION.SDK_INT >= 23 ? "abc_ic_ab_back_material" : "abc_ic_ab_back_mtrl_am_alpha";
res = context.getResources().getIdentifier(resName, "drawable", context.getPackageName());


final Drawable upArrow = context.getResources().getDrawable(res);
upArrow.setColorFilter(color, PorterDuff.Mode.SRC_ATOP);


return upArrow;
}


...


getSupportActionBar().setHomeAsUpIndicator(changeBackArrowColor(this, Color.rgb(50, 50, 50)));
supportInvalidateOptionsMenu();

此外,如果要更改工具栏文本颜色:

Spannable spannableString = new SpannableString(t);
spannableString.setSpan(new ForegroundColorSpan(Color.rgb(50, 50, 50)), 0, t.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
toolbar.setText(spannableString);

Working from API 19 through 25.

将工具栏主题更改为主题覆盖。应用程序。黑暗

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:orientation="vertical"
app:theme="@style/ThemeOverlay.AppCompat.Dark">


</android.support.v7.widget.Toolbar>

启动它

mToolbar = (Toolbar) findViewById(R.id.navigation);
setSupportActionBar(mToolbar);

还有一个更简单的方法

drawerToggle = new ActionBarDrawerToggle(this, drawer, toolbar, R.string.open_drawer, R.string.close_drawer);
arrow = drawerToggle.getDrawerArrowDrawable();

然后

arrow.setColor(getResources().getColor(R.color.blue);

不要更改样式,而是将这两行代码放到您的活动中。

getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setHomeAsUpIndicator(R.drawable.arrowleft);

不要使用旧的可绘制 id“ 材料”,而是在每个 api 版本中使用新的 材料。我已经在19,21,27中测试了它,并且在下面的代码和配置中工作得很好。

  • MinSdkVersion = 17
  • TargetSdkVersion = 26
  • CompileSdkVersion = 27

    public static Drawable changeBackArrowColor(Context context, int color) {
    int res;
    res = context.getResources().getIdentifier("abc_ic_ab_back_material", "drawable", context.getPackageName());
    if (res == 0)
    return null;
    final Drawable upArrow = ContextCompat.getDrawable(context, res);
    upArrow.setColorFilter(ContextCompat.getColor(context, color), PorterDuff.Mode.SRC_ATOP);
    
    
    return upArrow;
    

    }

我的解决办法是:

toolbar.navigationIcon?.mutate()?.let {
it.setTint(theColor)
toolbar.navigationIcon = it
}

或者,如果你想为它使用一个好的函数:

fun Toolbar.setNavigationIconColor(@ColorInt color: Int) = navigationIcon?.mutate()?.let {
it.setTint(color)
this.navigationIcon = it
}

用法:

toolbar.setNavitationIconColor(someColor)

试试这个: 在布局中设置工具栏的主题,如下所示

android:theme = "@android:style/ThemeOverlay.Material.Dark.ActionBar"

如果你想要进一步的信息

The curious case of the Overflow Icon Color by Martin Bonnin

由于某些原因无法使用这里的解决方案给它上色。但是可以使用 com.google.android.material.appbar.MaterialToolbar代替

app:navigationIconTint="@color/black"

见: https://material.io/components/app-bars-top/android#regular-top-app-bar

这是最好和最简单的选择。 GetSupportActionBar () . setHomeAsUpIndicator (R.draable.ic _ row _ back _ 24) ;