Android get images from sdcard
问题 I am using a code which is listing all the images from my device...and I'm trying to figure it out how to get images only from a specific folder, not all the images. Here is the code I'm using : ArrayList<Bitmap> images = new ArrayList<Bitmap>(); String[] projection = {MediaStore.Images.Thumbnails.DATA}; Uri uri = Uri.parse("content://media/external/images/media"); cursor = managedQuery( uri, projection, null, null, null); //cursor = managedQuery( MediaStore.Images.Media.EXTERNAL_CONTENT_URI,