1
대상이 Android-19 (4.4.2)
인 Eclipse Juno
내에 안드로이드 애플리케이션을 만들 때, 내 액티비티 내에 만 onCreate()
메서드를 생성하면됩니다. 내 활동을 만들 때Android : 응용 프로그램을 만들 때 특정 방법을 만들지 못하게하는 방법은 무엇입니까?
그러나, 순간에 나는 다음을 얻고, 내가하지이 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);
}
}
나는이 방법을 삭제할 수는 있지만 그럴 수 없다는 것을 알고있다.
onCreateOptionsMenu()
and onOptionsItemsSelect()
메서드가 이 아니고 Android 응용 프로그램을 만들 때이되도록하려면 어떻게해야합니까?