本文介绍了如何在不同的Fragment中制作不同的菜单选项?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望在不同的fragment
中具有完全不同的menu options
.我遵循了帖子.但是我的片段菜单中添加了活动菜单.但是我不想在某些片段中包含活动菜单.
在SlidingDrawerActivity
:
I want to have completely different menu options
in different fragment
.I followed this post.But my fragment menu is adding with the activity menu.But i don't want to have activity menus in some of my fragments.
In SlidingDrawerActivity
:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
在我的片段中:
In my fragment:
public Friends_Status_Comment_Fragment(){
setHasOptionsMenu(true);
}
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.menu_add_comment,menu);
super.onCreateOptionsMenu(menu, inflater);
}
活动"项随片段菜单一起添加.如何阻止它?
The Activities items are adding with the menu of fragment.How to stop it???
推荐答案
我不确定我是否理解您的问题-在您的片段中,您应该清除菜单并创建一个新菜单-并且不要调用super :)之类的东西这个:
I'm not sure if I underestand your problem - in your fragment you should clear menu and create new one - and don't call super :) something like this:
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater){
menu.clear();
inflater.inflate(R.menu.menu_add_comment,menu);
}
这篇关于如何在不同的Fragment中制作不同的菜单选项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!