アクティビティのレイアウトを 2 回指定する必要があるのはなぜですか?
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.activity_main, menu); // <--
return true;
}
これら2つの方法の違いは何ですか?. いつ一方を使用し、いつもう一方を使用する必要がありますか?