更改后退按钮上的颜色(在ActionBar上)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改后退按钮上的颜色(在ActionBar上)相关的知识,希望对你有一定的参考价值。

如何更改ActionBar中的后退按钮颜色? (从黑色到白色)。它是这个按钮的屏幕截图:

enter image description here

以及如何更改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>
另一答案

试试这个:

enter image description here !Change Menu color in Navigation

在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上)的主要内容,如果未能解决你的问题,请参考以下文章

Actionbar中后退箭头的颜色不会更改

ActionBar的后退主页按钮无法使用片段

更改导航视图上的默认后退按钮

如何在颤动中更改 RateMyAppNoButton 上的后退按钮

更改 UINavigationController 后退按钮的颜色

SwiftUI 在 NavigationLink 中更改后退按钮的颜色