项目直接添加到Actionbar的溢出菜单中

时间:2015-05-29 14:12:28

标签: android android-actionbar android-xml android-actionbaractivity

我正在开发一个应用程序,我需要在操作栏上显示一个带有图标的按钮。我试过跟随,但它直接添加溢出菜单。我想在行动吧。

我尝试了一些在stackoverflow上给出的解决方案,但它们都没有为我工作。请告诉我我错过了什么

这是菜单的xml文件。

<menu xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto">

  <item android:id="@+id/action_wishlist"
      android:icon="@drawable/wish"
      android:title="WishList"
      android:orderInCategory="0"
      app:showAsAction="ifRoom" />


</menu>

添加名为&#39;愿望清单&#39;的项目在溢出菜单中。

使用的主题是

<style name="AppBaseTheme" parent="android:Theme.Holo.Light">

感谢。

1 个答案:

答案 0 :(得分:0)

如果您使用的是Theme.Holo.Light,则表示您没有使用appcompat-v7作为操作栏,而是使用原生操作栏。在这种情况下,请将app:showAsAction更改为android:showAsAction