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

我正在使用一个android.support.v7.widget.Toolbar,并从这篇文章中学习如何将汉堡图标的颜色更改为白色,但是当我打电话时,向上/向后箭头仍然是一个黑色

setDisplayHomeAsUpEnabled(true); 

我怎样才能使箭头白色?

当我调用setDisplayHomeAsUpEnabled()时,以下是我的工具栏的外观:

在这里输入图像说明

…这里是我的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> 

我通过编辑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"/> 

我用这个代码编程解决了它:

 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(Marshmallow)开始,可绘制资源abc_ic_ab_back_mtrl_am_alpha更改为abc_ic_ab_back_material

这是你在找什么。 但是这也改变了radioButton的颜色等。所以你可能想要使用它的主题。

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

这个答案可能太晚了,但这是我如何做到的。 造型的工具栏将做的伎俩。 用下面的代码创buildtoolbar.xml。

 <?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" /> 
  <!-- 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> 

发贴太迟,这工作对我来说,改变后退button的颜色

这段代码适用于我:

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

从API 19到25工作。

将您的工具栏主题更改为ThemeOverlay.AppCompat.Dark

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