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

Posted

技术标签:

【中文标题】如何更改工具栏主页图标颜色【英文标题】:How to change Toolbar home icon color 【发布时间】:2015-04-21 15:41:51 【问题描述】:

我正在使用 android.support.v7.widget.Toolbar 并从 this post 学习如何将汉堡图标的颜色更改为白色,但是当我调用时上/后箭头仍然是深色

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>

【问题讨论】:

您可以使用白色箭头png图标并替换为黑色。 我试图避免这种情况,只是将颜色表示为一种风格......如果这是我知道的唯一方法,我可以通过 actionBarDrawerToggle.setHomeAsUpIndicator(R.drawable.arrow); ...png /com.android.support/appcompat-v7/21.0.3/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png 也显示为白色 @JoshuaWitter 谢谢它解决了我的问题,你能帮我检测一下点击后退按钮吗?这是我的问题***.com/questions/29138629/… @JoshuaWitter 即使它是白色的,它也会被着色。更改colorControlNormal 【参考方案1】:

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

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

...然后在 Activity 中引用 Toolbar 定义中的样式:

<LinearLayout
    android:id="@+id/main_parent_view"
    android:layout_
    android:layout_
    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_
        android:layout_
        android:minHeight="?attr/actionBarSize"
        android:background="?attr/colorPrimary"/>

【讨论】:

你也可以设置colorControlNormal而不是android:textColorSecondary 但这会改变整个小部件的颜色,对吧? @mbelsky @mbelsky 请注意,它需要 API 级别 21。 @Error404 : 如您所见here,它已添加到 API 级别 1 大家好,我已经尝试了您的代码,但没有得到所需的结果。在我的 toolbar.axml 文件中,我设置的主题是 android:theme=@style/ThemeOverlay.AppCompat.Dark.ActionBar,在我的 styles.axml 文件中,我已经编写了您给定的代码,但导航栏后退按钮的颜色没有改变。跨度> 【参考方案2】:

这就是您要查找的内容。但这也会改变 radioButton 等的颜色。所以你可能想为它使用一个主题。

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

【讨论】:

这应该是公认的答案。这实现了我想要的: 将主题直接应用到工具栏。 父属性很重要。【参考方案3】:

我使用以下代码以编程方式解决了它:

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

【讨论】:

也设置这个。 getSupportActionBar().setDisplayHomeAsUpEnabled(true); 这可以在Fragment 中使用吗?如果是这样,我会将这段代码放在哪里? OnCreateView 方法,类的根,还是...? @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);【参考方案4】:

这个答案可能为时已晚,但这是我的做法。 设置工具栏的样式就可以了。使用以下代码创建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_
android:layout_
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" />

【讨论】:

但是 AppTheme 没有在任何地方被引用。这是错字吗?【参考方案5】:

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

【讨论】:

我对其他答案感到惊讶,我总是使用这种方法【参考方案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)

【讨论】:

这是迄今为止最好的答案,它解决了我的问题【参考方案7】:
   <!-- 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);

【讨论】:

【参考方案9】:

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

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

【讨论】:

【参考方案10】:

此代码适用于我:

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 工作。

【讨论】:

【参考方案11】:

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

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

如果您想了解更多信息

The curious case of the Overflow Icon Color 马丁·波宁

【讨论】:

【参考方案12】:

由于某种原因,无法使用此处的解决方案对其进行着色。但是使用 com.google.android.material.appbar.MaterialToolbar 代替你可以使用

app:navigationIconTint="@color/black"

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

【讨论】:

【参考方案13】:

不要使用旧的可绘制 id "abc_ic_ab_back_material",而是在每个 api 版本中使用新的 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;

【讨论】:

以上是关于如何更改工具栏主页图标颜色的主要内容,如果未能解决你的问题,请参考以下文章

更改 SearchView 上的工具栏颜色/样式单击

如何更改 TabLayout 选定选项卡的图标颜色?

选项卡颜色变化

动画更改颜色时如何更新UI

如何更改Android Studio的代码字体和颜色

如何更改 MediaWiki 工具栏图标?