我想在操作栏的右侧使用汉堡图标。但它显示了一个箭头符号。我已经包含了Library AppCompatV7,并从Activity扩展了我的类。有人可以给出解决方案吗?我已经尝试了许多解决方案,但没有一个有效。
打开 Android 清单,检查您正在使用的主题。我正在使用应用主题进行我的主要活动
<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>
。我花了一段时间才把那个拼凑起来。