我有一个片段扩展android.support.v4.app.Fragment。我的菜单中需要一个复选框,但我知道我不能使用getSupportActionBar(),那么我有另一种选择吗? 非常感谢。
答案 0 :(得分:0)
在onCreateView
添加此行:
setHasOptionsMenu(true);
然后覆盖以下内容:
@Override
public void onCreateOptionsMenu(final Menu menu, MenuInflater inflater) {
// Inflate the menu; this adds items to the action bar if it is present.
inflater.inflate(R.menu.menu_frag, menu);
}