How can I get list of all images on the phone and show all of them in a listview. Basically I have a dialog where I am asking for a album name and a photo name which will be populated with the selection made from the listview. How do I get the file URI using this code...
Android list all images available
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), SELECT_IMAGE);