Empty cursor from the MediaStore

前端 未结 2 1735
自闭症患者
自闭症患者 2020-12-10 09:41

I can\'t figure out why this cursor is empty in just this one particular device. but works on all other android devices. There are several audiofiles on the sdcard, and the

2条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-10 10:06

    I have the same problem on a HTC Incredible and sadly DJC's answer didn't work for me. Both the EXTERNAL_CONTENT_URI and INTERNAL_CONTENT_URI didn't give me any images. After some digging I found that by using the following content URI, it did seem to work on the HTC Incredible.

    Uri contenturi = Images.Media.getContentUri("phoneStorage");
    

提交回复
热议问题