我想在操作栏的右侧使用汉堡包图标。但它显示了一个箭头标志。我已经包含了Library AppCompatV7并从Activity扩展了我的类。 someOne请给出解决方案。我尝试了很多解决方案但没有一个正在运作。
答案 0 :(得分: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,确保你的主题包含attribu“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>
......我花了一段时间把它拼凑起来。