我正在使用android.support.v7.widget.Toolbar并从this post学习如何将汉堡包图标的颜色更改为白色,但当我打电话时,向上/向后箭头仍为深色/ p>
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>
答案 0 :(得分:213)
我通过编辑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"/>
答案 1 :(得分:46)
这是您正在寻找的。但这也改变了radioButton等的颜色。所以你可能想要使用它的主题。
<item name="colorControlNormal">@color/colorControlNormal</item>
答案 2 :(得分:35)
我使用此代码以编程方式解决了它:
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
。
答案 3 :(得分: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" />
答案 4 :(得分:8)
这是我的解决方法:
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)
答案 5 :(得分:6)
<!-- 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>
发布太晚了,这对我有用,可以改变后退按钮的颜色
答案 6 :(得分:6)
有一种更简单的方法可以做到这一点
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 :(得分:4)
将工具栏主题更改为ThemeOverlay.AppCompat.Dark
private extractData(response: Response) {
let body = response.json();
return body || {};
}
并将其设置为activty
<?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>
答案 8 :(得分:3)
此代码适用于我:
"parentPointer"
另外,如果要更改工具栏文本颜色:
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();
从API 19到25工作。
答案 9 :(得分:1)
尝试一下: 按如下所示在布局中设置工具栏的主题
android:theme = "@android:style/ThemeOverlay.Material.Dark.ActionBar"
如果您想了解更多信息
The curious case of the Overflow Icon Color 马丁·波宁(Martin Bonnin)
答案 10 :(得分:0)
只需将这两行代码放入您的活动中,而不是样式更改。
module.exports.mailname="username@gmail.com";
答案 11 :(得分:0)
在每个api版本中,使用新的 abc_ic_ab_back_material 代替使用较旧的可绘制ID“ abc_ic_ab_back_material ”。我已经在19、21、27进行了测试,并且可以在下面的代码和配置下正常工作。
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;
}