Accessing Images in Android External Storage


To access the list of media files (such as Audio, Images and Video) from an External Storage device in android, the Media provider can be used. An example of using the Media provider to access all Image type files on the External Storage: Cursor mCursor = getContentResolver() .query( MediaStore.Images.Media....

Read More