When switching between actions, you can send information
Bundle bundle = new Bundle();
bundle.putStringArrayList("ArrayPics",myArrayofPics);
Intent myIntent= new Intent(ActivityA.this, ActivityB.class);
myIntent.putExtras(bundle);
startActivity(myIntent);
so your activity B can get an ArrayList
You can also save data in general settings and read in each event of your application.
General settings
source
share