问题:更新支持库并使用工具栏后,溢出菜单按钮始终显示在带有和不带硬件菜单按钮的设备上
我需要的是:我希望溢出菜单按钮仅在设备没有硬件菜单按钮时显示
menu.xml文件
在活动中(ActionBarActivity)
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main,menu);
return true;
}
并在onCreate:setSupportActionBar(mToolbar);
帮助将不胜感激!
最佳答案
原文链接:https://www.f2er.com/android/431182.html