我已经提到了这个博客教程。但是,我想不通,他们在这个编码中从哪里得到“R.menu.main”?@Overridepublic 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;}和..他们从哪里得到“R.id.action_settings”?@Overridepublic boolean onOptionsItemSelected(MenuItem item) { int id = item.getItemId(); if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item);}我试图通过根据此博客教程添加一点来更改我的编码。我的应用程序仍然崩溃,它突然关闭。
添加回答
举报
0/150
提交
取消