如何在新的材料主题中更改后退箭头的颜色?

我已将SDK更新为API 21,现在备份/向上图标是指向左侧的黑色箭头。

Black back arrow

我希望它是灰色的。我该怎么做?

例如,在Play商店中,箭头是白色的。

我这样做是为了设置一些样式。我用过.该可绘制对象是透明的(仅 alpha),但箭头显示为黑色。我想知道我是否可以像在.或者,如果唯一的解决方案是创建 my 并将其用于 .@drawable/abc_ic_ab_back_mtrl_am_alphahomeAsUpIndicatorDrawerArrowStyle@drawable/grey_arrowhomeAsUpIndicator

<!-- Base application theme -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
    <item name="android:actionBarStyle" tools:ignore="NewApi">@style/MyActionBar</item>
    <item name="actionBarStyle">@style/MyActionBar</item>

    <item name="drawerArrowStyle">@style/DrawerArrowStyle</item>

    <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>
    <item name="android:homeAsUpIndicator" tools:ignore="NewApi">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>
</style>

<!-- ActionBar style -->
<style name="MyActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid">

    <item name="android:background">@color/actionbar_background</item>
    <!-- Support library compatibility -->
    <item name="background">@color/actionbar_background</item>
</style>

<!-- Style for the navigation drawer icon -->
<style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle">
    <item name="spinBars">true</item>
    <item name="color">@color/actionbar_text</item>
</style>

到目前为止,我的解决方案是采用,这似乎是白色的,并使用照片编辑器将其绘制成我想要的颜色。它的工作原理,尽管我更喜欢在中使用like。@drawable/abc_ic_ab_back_mtrl_am_alpha@color/actionbar_textDrawerArrowStyle


答案 1

您可以通过代码来实现它。获取可绘制的后退箭头,使用滤镜修改其颜色,并将其设置为后退按钮。

final Drawable upArrow = getResources().getDrawable(R.drawable.abc_ic_ab_back_mtrl_am_alpha);
upArrow.setColorFilter(getResources().getColor(R.color.grey), PorterDuff.Mode.SRC_ATOP);
getSupportActionBar().setHomeAsUpIndicator(upArrow);

修订版 1:

从 API 23(棉花糖)开始,可绘制资源将更改为 。abc_ic_ab_back_mtrl_am_alphaabc_ic_ab_back_material

编辑:

您可以使用此代码获得所需的结果:

toolbar.getNavigationIcon().setColorFilter(getResources().getColor(R.color.blue_gray_15), PorterDuff.Mode.SRC_ATOP);

答案 2

查看 和 源,是用 style 属性的值着色的。ToolbarTintManagerdrawable/abc_ic_ab_back_mtrl_am_alphacolorControlNormal

我确实尝试过在我的项目中设置它(在我的主题中),但对我来说它仍然是黑色的。<item name="colorControlNormal">@color/my_awesome_color</item>

更新

找到了。您需要使用 设置属性(不是 )。actionBarThemeactionBarStylecolorControlNormal

例如:

<style name="MyTheme" parent="Theme.AppCompat.Light">        
    <item name="actionBarTheme">@style/MyApp.ActionBarTheme</item>
    <item name="actionBarStyle">@style/MyApp.ActionBar</item>
    <!-- color for widget theming, eg EditText. Doesn't effect ActionBar. -->
    <item name="colorControlNormal">@color/my_awesome_color</item>
    <!-- The animated arrow style -->
    <item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
</style>

<style name="MyApp.ActionBarTheme" parent="@style/ThemeOverlay.AppCompat.ActionBar">       
    <!-- THIS is where you can color the arrow! -->
    <item name="colorControlNormal">@color/my_awesome_color</item>
</style>

<style name="MyApp.ActionBarStyle" parent="@style/Widget.AppCompat.Light.ActionBar">
    <item name="elevation">0dp</item>      
    <!-- style for actionBar title -->  
    <item name="titleTextStyle">@style/ActionBarTitleText</item>
    <!-- style for actionBar subtitle -->  
    <item name="subtitleTextStyle">@style/ActionBarSubtitleText</item>

    <!-- 
    the actionBarTheme doesn't use the colorControlNormal attribute
    <item name="colorControlNormal">@color/my_awesome_color</item>
     -->
</style>