我想在我的应用中显示智能手机中的所有媒体文件(照片和视频)。
此刻我这样做:
return new CursorLoader(this,
MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
new String[] { MediaStore.Images.Media.DATA, MediaStore.Images.Media._ID },
selection,
selectionArgs,
sortOrder);
但这种方法只返回照片。
为我的设备上的所有视频获取uris的方法是什么?
答案 0 :(得分:1)
将Images
替换为您在上面的代码段中看到的Videos
,以获取用于检索视频的等效代码段。