Android 菜单在错误的地方膨胀

Android menu inflating in the wrong place

这是我目前的问题:

我的设置菜单充气不正确。我不知道为什么,这让我发疯!有没有人知道发生了什么事?菜单的位置应该稍微在溢出图标下方。可能是我布置选项卡或 viewpager 的方式,还是其他原因?我敢肯定这不是一个孤立的案例,所以如果有人以前遇到过这个问题...

提前致谢!


在我的 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();

    if (id == R.id.action_settings) {
        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=".MainActivity"
android:id="@+id/menu_item">
<item android:id="@+id/action_settings"
    android:title="@string/action_settings"
    android:orderInCategory="101"
    app:showAsAction="never" />
<item
    android:id="@+id/action_about"
    android:title="@string/action_about"
    android:orderInCategory="102"
    app:showAsAction="never"/>
</menu>

这是默认的 UI 模式并且没有错误,请参考 official documentation 中的以下屏幕截图:

如果您不喜欢它,您可以更改此行为

参考了解详情。