在 Android 中创建选项菜单
我正在尝试在我的 Android 程序中创建选项菜单。我正在使用以下代码来扩展选项菜单:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
MenuInflater inflater=getMenuInflater();
inflater.inflate(R.menu.optionsmenu, menu);
return true;
}
我的 xml 代码是:
?xml version="1.0" encoding="utf-8"?>
<menu
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/Option1"
android:title="Option1"/>
<item
android:id="@+id/Option2"
android:title="Option2"/>
<item
android:id="@+id/Option3"
android:title="Option3"/>
</menu>
但是使用此代码我无法在屏幕上显示选项菜单。
另外,我正在使用代码
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
使活动成为全屏视图。这段代码是否会导致菜单膨胀出现问题?
提前致谢,
蒂姆森
I am trying to create options menu in my Android program. I am using the following code to inflate options menu :
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
MenuInflater inflater=getMenuInflater();
inflater.inflate(R.menu.optionsmenu, menu);
return true;
}
And my xml code is :
?xml version="1.0" encoding="utf-8"?>
<menu
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/Option1"
android:title="Option1"/>
<item
android:id="@+id/Option2"
android:title="Option2"/>
<item
android:id="@+id/Option3"
android:title="Option3"/>
</menu>
But with this code i am not able to show the options menu in my screen.
Also, i am using the code
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
to make the activity as full screen view. Does this code creates problem in inflating the menu?
Thanks in advance,
Timson
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
从 onCreateOptionMenu 中删除行
super.onCreateOptionsMenu(menu);
。实际上,您在膨胀菜单之前就已经提供了菜单。remove the line
super.onCreateOptionsMenu(menu);
from your onCreateOptionMenu. You are actually already providing the menu before inflating it.按手机底部的选项菜单按钮即可显示选项菜单
Options menu shows up by pressing the Options Menu button at the bottom of the phone
不要调用
,因为这会在代码执行之前返回一个值。
Don't call
as that will return a value before your code is executed.
使用此代码:
Use this code: