Eclipse Juno
当我使用 Target:创建 Android 应用程序时Android-19 (4.4.2)
,我只希望onCreate()
在我的 Activity 中创建该方法。
但是,当我创建我的活动时,我得到以下信息,请注意我不想在我的应用程序中使用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()
方法?