I\'m trying to make a little app that displays only images from a specific folder in a gallery view. I have found a few examples, but every single one just ends up displayin
Figured it out! Below is the pasted code for anyone who wants to do something similar.
Cursor imagecursor = getContentResolver().query( MediaStore.Images.Media.EXTERNAL_CONTENT_URI, columns, MediaStore.Images.Media.DATA + " like ? ", new String[] {"%/yourfoldername/%"}, null);