I have the code:
final ArrayList<byte[]> Picture = new ArrayList<byte[]>();
.....
......
.....
....
Intent myIntent = new Intent(PageAndExercise.this, theAnswers.class);
myIntent.putExtra("Picture", Picture);
startActivity(myIntent);
How can I get the Pictuer arraylist from the extra? Thanks