在操作栏上创建选项菜单

时间:2016-03-21 18:06:18

标签: java android android-studio

我在我的应用程序中创建了一个选项菜单,由于某种原因,它可以在我的一部智能手机上运行,​​而不是另一部分。选项菜单上运行的智能手机是android棒棒糖5.0它没有工作的智能手机是软糖4.1。我不确定这是否与它有关,但我需要选项菜单才能在两部手机上工作。任何关于为什么会发生这种情况的想法 我的守则就像休耕一样 MainActivity

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}


@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_Menu) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}

menu_main.xml

<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context="saveourcar.soc.MainActivity">
    <item
        android:id="@+id/action_Menu"
        android:orderInCategory="100"
        android:title="Menu"
        app:showAsAction="never" >
    <menu>
        <item
            android:id="@+id/instructions"
            android:title="Instructions"
            android:icon="@drawable/rench"/>
        <item
            android:id="@+id/hotels"
            android:title="Hotels"
            android:icon="@drawable/hotel"/>

    </menu>
    </item>
</menu>

enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

试试这个:

在onCreateView方法中:

setHasOptionsMenuEnabled(true);

或菜单布局上的这个:

android:showAsAction="always"