Reputation: 787
I made a project like video/audio player in android.
I want to search all video and audio files available on the device, how can I do this?
Upvotes: 0
Views: 2046
Reputation: 28705
Use the content provider to query the media store, see the documentation at
https://developer.android.com/reference/android/provider/MediaStore.html
https://developer.android.com/guide/topics/providers/content-providers.html
Upvotes: 1