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


108

我正在使用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>

2
您可以使用白色箭头png图标,并替换为黑色的png图标。
Surender Kumar 2015年

1
我试图避免这种情况,只是将颜色表示为一种样式...如果那是我知道可以通过actionBarDrawerToggle.setHomeAsUpIndicator(R.drawable.arrow)的唯一方法,
2015年

... png /com.android.support/appcompat-v7/21.0.3/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png也显示为白色
Joshua W

@JoshuaWitter谢谢您解决了我的问题,您能否也请帮助我检测单击后退按钮?这里是我的问题stackoverflow.com/questions/29138629/...
user2056563

1
@JoshuaWitter即使是白色,也会被着色。更改colorControlNormal
osrl 2015年

Answers:


242

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

13
您还可以设置colorControlNormal代替android:textColorSecondary
mbelsky

但这会改变整个小部件的颜色吗?@mbelsky
博士16年

3
@mbelsky注意,它需要API级别21
弗朗西斯科·罗梅罗

@ Error404:正如您在此处
Mohamed Hatem Abdu

大家好,我已经尝试过您的代码,但是没有得到要求的结果。在我的toolbar.axml文件中,我设置的主题是android:theme=@style/ThemeOverlay.AppCompat.Dark.ActionBar,在我的styles.axml文件中,我编写了给定的代码,但导航栏后退按钮的颜色没有改变。
Deepak

57

这是您要找的东西。但这也会更改radioButton等的颜色。因此,您可能要为其使用主题。

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

11
这应该是公认的答案。这可以实现我一直在寻找的东西:<style name =“ ActionBarTheme” parent =“ ThemeOverlay.AppCompat.Dark.ActionBar”> <item name =“ colorControlNormal”> ### COLOR ### </ item> </ style>将主题直接应用到工具栏。
Mavamaarten '16

1
父级属性非常重要。
ataravati

36

我使用以下代码以编程方式解决了该问题:

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


5
设置这个也。 getSupportActionBar().setDisplayHomeAsUpEnabled(true);
Ishan Fernando

这项工作会成功Fragment吗?如果是这样,我将把这段代码放在哪里?该OnCreateView方法的类的根,还是......?
AndroidDevBro

1
@AndroidDevBro是的,只需将其放在OnCreate函数中,并记住按照Nouman Tahir在修订版中的描述更新资源(使用R.drawable.abc_ic_ab_back_material而不是R.drawable.abc_ic_ab_back_mtrl_am_alpha)并获取如下所示的SupportActionBar:((AppCompatActivity) getActivity())。getSupportActionBar()。setHomeAsUpIndicator(upArrow);
PayToPwn

14

这个答案也许为时已晚,但是这就是我的方法。设置工具栏样式将达到目的。使用以下代码创建toolbar.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" />

1
但是AppTheme在任何地方都没有被引用。这是错字吗?
亨利

11

将您的工具栏主题更改为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);

1
我对其他答案感到惊讶,我一直使用这种方法
C. Skjerdal

9
   <!-- 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>

发布太晚了,这对我来说可以更改后退按钮的颜色


8

好吧,有一种更简单的方法可以做到这一点

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

然后

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

7

无需更改样式,只需将这两行代码放入您的活动中即可。

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

6

这是我的解决方案:

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)

到目前为止,这是最好的答案,它可以解决我的问题
Zaraki596

5

该代码对我有用:

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。


0

在每个API版本中,使用新的abc_ic_ab_back_material代替旧的可绘制id“ abc_ic_ab_back_material ” 。我已经在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;

    }


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.