Intent intent = new Intent(FROM_ACTIVITY, TO_ACTIVITY);Similarly, retreiving an object:
Bundle bundle = new Bundle();
bundle.putString("data", "Hello World!");
intent.putExtras(bundle);
Bundle bundle = intent.getExtras();The second argument is the default value. Notice that the bundle object is an argument of the onCreate method for every activity.
String data = b.getInt("data", "");
No comments:
Post a Comment