How can I send a nodelist between Activities? I have an app in which there are 4 screens with four activities. In first activity I parse url to get a nodelist. When the button is clicked I need to start new activity and send nodelist to the second activity.
I tried this way
Intent intent = new Intent(this, SecondActivity.class);
Bundle bundle = new Bundle();
bundle.putString("KEY","NodeList");
intent.putExtras(bundle);
startActivity(intent);