I\'m not very clear about the Intent object and how to use it to pass data between Activities. In my application I have several tabs between which I want to pass ArrayList.
With the examples above, it was really work when I replace the "onStop" = "onPause"
/** Called when the activity looses focus **/
@Override public void onStop()
{
Intent myIntent = new Intent();
myIntent.putStringArrayListExtra("arrayPeople", arrayPeople);
this.setIntent(myIntent);
}
/** Called when the activity looses focus **/
@Override public void onPause()
{
Intent myIntent = new Intent();
myIntent.putStringArrayListExtra("arrayPeople", arrayPeople);
this.setIntent(myIntent);
}