Beispiel #1
0
  @Override
  public void onNavigationDrawerItemSelected(int position) {
    android.app.Fragment fragment;
    // update the main content by replacing fragments
    switch (position) {
      case 0:
        fragment = FragmentFactory.newInstance(position);
        addFragment(fragment, Consts.LOCATION_FRAGMENT);
        break;
      case 1:
        fragment = FragmentFactory.newInstance(position);
        addFragment(fragment, Consts.LOCATION_FRAGMENT);
        break;

      default:
        Intent intent = new Intent(this, RestaurantViewPager.class);
        startActivity(intent);
        break;
    }
  }