これは主なアクティビティですが、私はそれをCategoriesアクティビティに変更したいと考えています。 問題はどこにありますか?アクティビティの階層親を変更するにはどうすればよいですか?
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
// This ID represents the Home or Up button. In the case of this
// activity, the Up button is shown. Use NavUtils to allow users
// to navigate up one level in the application structure. For
// more details, see the Navigation pattern on Android Design:
//
// http://developer.android.com/design/patterns/navigation.html#up-vs-back
//
NavUtils.navigateUpFromSameTask(this);
return true;
}
return super.onOptionsItemSelected(item);
問題は何ですか? – fiddler
私がカテゴリアクティビティ(例えば、スポーツ、私はカテゴリアクティビティではなく、起動アクティビティであるメインアクティビティに戻って行きたい – user2229066