我使用的是android导航抽屉模板,但是当我打开抽屉时,“示例操作”按钮消失了。我希望它留下来,但我不知道删除它的代码在哪里。
我的示例操作按钮名为Refresh
http://s3.postimg.org/3zp3l1txf/Screenshot_2015_06_30_14_03_58.png
http://s17.postimg.org/lmmmcvybz/Screenshot_2015_06_30_14_04_01.png
由于
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
// If the drawer is open, show the global app actions in the action bar. See also
// showGlobalContextActionBar, which controls the top-left area of the action bar.
if (mDrawerLayout != null && isDrawerOpen()) {
inflater.inflate(R.menu.global, menu);
showGlobalContextActionBar();
}