我使用下面的代码显示特定文件夹的视频列表,当我以编程方式创建该文件夹无法在内容提供商中找到(新建文件夹)特定文件夹的视频时。
代码:
String selection=MediaStore.Video.Media.DATA +" like?";
String[] selectionArgs=new String[]{"%FolderName%"};
videocursor = managedQuery(MediaStore.Video.Media.EXTERNAL_CONTENT_URI,
parameters, selection, selectionArgs, MediaStore.Video.Media.DATE_TAKEN + " DESC");
文件夹创建代码:
String ap = getdata.getString("edit", ""); //Folder Name 'FolderName'
path = new File(Environment
.getExternalStoragePublicDirectory(ap)
.getAbsolutePath().toString());
if(!path.exists()){
path.mkdir();}