Я думаю, вы можете отправить этот список другому Activity
с помощью ListView
или сделать его общедоступным для доступа из другого действия
и в методе Adapter's getView
при назначении Image to ImageView
сделай так,
Uri contentUri = imageList.get(position);
String[] proj = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(contentUri, proj, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
String tmppath = cursor.getString(column_index);
Bitmap imaage = BitmapFactory.decodeFile(tmppath);
imageView.setImageBitmap(image);