1This is what i have been using, hopfully it helps someone.. simple and affective.
2
3send data
4
5 intent = new Intent(getActivity(), CheckinActivity.class);
6 intent.putExtra("mealID", meal.Meald);
7 startActivity(intent);
8get data
9
10 int mealId;
11
12 Intent intent = getIntent();
13 Bundle bundle = intent.getExtras();
14
15 if(bundle != null){
16 mealId = bundle.getInt("mealID");
17 }
18cheers!