int mealId; Intent intent = getIntent(); Bundle bundle = intent.getExtras(); if(bundle != null){ mealId = bundle.getInt("mealID"); }
intent = new Intent(getActivity(), CheckinActivity.class); intent.putExtra("mealID", meal.Meald); startActivity(intent);