0

我想在我的操作栏右侧使用一个汉堡包图标。但它显示一个箭头标志。我已经包含了 Library AppCompatV7 并从 Activity 扩展了我的类。有人可以请给出解决方案。我尝试了很多解决方案,但没有一个有效。

4

1 回答 1

2

打开 Android Manifest,检查您使用的主题。我将 AppTheme 用于我的主要活动

<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>

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

于 2016-03-20T12:43:28.000 回答