更改后退按钮上的颜色(在ActionBar上)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改后退按钮上的颜色(在ActionBar上)相关的知识,希望对你有一定的参考价值。
答案
以下适用于ToolBar
:
<style name="MyTheme" parent="Theme.AppCompat">
<item name="drawerArrowStyle">@style/MyDrawerArrowToggle</item>
</style>
<style name="MyDrawerArrowToggle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="color">@color/your_color</item>
</style>
编辑
Option 2
<style name="ToolbarThemeWhite" parent="@style/ThemeOverlay.AppCompat.ActionBar">
<item name="colorControlNormal">@color/white</item>
<item name="android:textColorPrimary">@color/white</item>
</style>
将此样式设置为工具栏
另一答案
以下代码示例为我工作
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" >
<item name="android:windowContentOverlay">@null</item>
<!--below line used to change the color of home(back) button color-->
<item name="colorControlNormal">@color/red</item>
</style>
另一答案
试试这个:
在style.xml中:
<style name="MyMaterialTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
<item name="android:textColor">@color/colorAccent</item>
</style>
<style name="DrawerArrowStyle" parent="@style/Widget.AppCompat.DrawerArrowToggle">
<item name="spinBars">true</item>
<item name="color">@color/colorPrimaryDark</item>
</style>
在Mainfests.xml中:
<activity android:name=".MainActivity"
android:theme="@style/MyMaterialTheme.Base"></activity>
以上是关于更改后退按钮上的颜色(在ActionBar上)的主要内容,如果未能解决你的问题,请参考以下文章
如何在颤动中更改 RateMyAppNoButton 上的后退按钮