Android Development: Find every picture on SD?
Is there a way to get all let say pictures (*.jpg) and list them in a listview /adapter? And find all pictures within subfolders too.
Thank you! Regar开发者_运维百科ds user564612
You don't need to do that... MediaStore
does it for you.
What you'd need to do is query the MediaStore content provider, probably with MediaStore.Images.Media.query()
精彩评论