Skip to content Skip to sidebar Skip to footer

Internal Vs External Uri On Fetching Data From Mediastore

Hopefully someone can clarify this to me...I am working on a simple video player app that plays video clip stored on phone. All examples I've seen fetch video using MediaStore.Vide

Solution 1:

ran some tests and it seems the answer it depends. On android emulator and HTC mytouch it fetches only items on external SD card, while on Samsung Galaxy S it actually pulls from internal storage too.

This is the part I really hate about android - why such simple things are so different

Solution 2:

Can you just use

MediaStore.Video.Media.INTERNAL_CONTENT_URI

Post a Comment for "Internal Vs External Uri On Fetching Data From Mediastore"