有人可以解释为什么第二个项目没有被添加到操作栏中的溢出菜单中吗?设置显示正确,如果我将配置文件设置为,showAsAction
则会显示配置文件always
,但我希望配置文件出现在溢出菜单中。
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:Molo="http://schemas.android.com/apk/res-auto" >
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
android:icon="@drawable/settings"
Molo:showAsAction="always" />
<item android:id="@+id/action_profile"
android:title="@string/action_profile"
android:icon="@drawable/user"
Molo:showAsAction="never"/>
</menu>