当我使用目标Eclipse Juno
在Android-19 (4.4.2)
内创建Android应用时,我只希望在我的Activity中创建onCreate()
方法。
但是,当我创建活动时,我得到以下内容时,请注意我不想要在我的应用程序中使用fragments
或action bar
。
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@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;
}
@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();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
我知道我可以删除这些方法,但不这样做会更方便。
在创建Android应用程序时,如何确保onCreateOptionsMenu()
and onOptionsItemsSelect()
方法不?
答案 0 :(得分:2)
简单。创建新项目时,不选择“空白活动”,而是选择“空活动”。就是这样。