我正在尝试将菜单放入我的应用中的片段中。但是,当我运行它时,菜单不会出现。我对在片段中显示菜单所涉及的步骤的理解(如果我错了或缺少某些内容,请纠正我)是您执行以下操作:
onCreateOptionsMenu(Menu, MenuInflater)
并在所述方法中,夸大菜单资源ID定义的布局。onCreateOptionsMenu
方法中的setHasOptionsMenu(true)
,通知片段管理员此片段应该接收到onCreate
的来电。我已经编写了我的代码的简化版本,只包括(我相信)应该显示菜单的最低限度。谁能告诉我这段代码中缺少什么?
这是我的菜单资源xml:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/menu_item_1"
android:icon="@android:drawable/ic_menu_add"
android:title="@string/menu_item_text"
android:showAsAction="ifRoom|withText"/>
</menu>
我的片段代码:
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.View;
import android.view.ViewGroup;
public class MainFragment extends Fragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setHasOptionsMenu(true);
}
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
super.onCreateOptionsMenu(menu, inflater);
inflater.inflate(R.menu.fragment_menu, menu);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.fragment_main, parent, false);
return v;
}
}
我的活动代码:
package com.bignerdranch.android.fragmentmenuexample;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
FragmentManager fm = getSupportFragmentManager();
Fragment fragment = fm.findFragmentById(R.id.fragmentContainer);
if (fragment == null) {
fragment = new MainFragment();
fm.beginTransaction()
.add(R.id.fragmentContainer, fragment)
.commit();
}
}
}
我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bignerdranch.android.fragmentmenuexample" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我在运行IceCreamSandwich的AVD Galaxy Nexus上运行它。
答案 0 :(得分:5)
问题解决了。我的styles.xml文件包含以下内容:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
我添加了一个新的资源目录values-v14,并为其添加了以下样式:
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
答案 1 :(得分:1)
我认为您错过了覆盖onCreateOptionsMenu
中的MainActivity
。
如果您不需要为任何菜单充气,只需返回true
:
@Override
public boolean onCreateOptionsMenu ( Menu menu ) {
return true;
}
答案 2 :(得分:0)
您可以简单地创建一个Android示例项目,作为您可以选择菜单或其他样式的指南,您可以找到与您的代码不同的内容。
答案 3 :(得分:0)
您可以在活动中覆盖以下功能。
@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;
}
这将解决问题。