我试图关注一个在线youtube android初学者课程教程,但是当我创建一个新的空白活动时,右上方溢出菜单上的3个点没有显示,并且这个渲染问题发生了。我试图将API更改为22,21,19,并尝试更改style.xml方法,两者都不适用于我。请帮忙。感谢。
答案 0 :(得分:0)
对于菜单,您必须覆盖以下功能。
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
即使菜单在预览中不可用,也只需在模拟器或真实设备中进行测试。它运行正常。