ActionBar 中的 HamBurger 图标

HamBurger Icon in ActionBar

我想在我的操作栏右侧使用汉堡包图标。但它显示了一个箭头标志。我包含了库 AppCompatV7 并从 Activity 扩展了我的 class。有人可以提供解决方案吗?我尝试了很多解决方案,但 none 有效。

打开Android Manifest,检查您使用的是什么主题。我主要使用 AppTheme activity

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".FrontPageActivity"
            android:label="@string/app_name">
        </activity>

2) 打开 res/values/styles,确保您的主题包含属性 "drawerArrowStyle",然后为其创建一个新样式,将 "spinBars" 的值更改为 true。

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
    </style>

    <style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle">
        <item name="spinBars">true</item>
        <item name="color">@android:color/white</item>
    </style>

...我花了一段时间才拼凑起来。