In my app I can access the gallery through the code
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"Select Picture"), SELECT_PICTURE);
now through startActivityForresult(); I can get the URI of selected image. I add the URI in an ArrayList<String> imageList, I want to show the images in a ListView by another Activity.
please help??
I think you can send that list to Another
ActivitywithListViewor Make It Public To be Accesed From Another Activityand in
Adapter's getViewmethod while assigningImage to ImageViewdo it like this,