What\'s the correct way to pass a bundle to the activity that is being launched from the current one? Shared properties?
you can use this code in your first activity :
Intent i = new Intent(Context, your second activity.class);
i.putExtra("key_value", "your object");
startActivity(i);
and get object in second activity :
Intent in = getIntent();
Bundle content = in.getExtras();
// check null
if (content != null) {
String content = content_search.getString("key_value");
}