Android MediaStore.Files.getContentUri 如何获取应用程序内部的文件夹
Android MediaStore.Files.getContentUri how to get a folder internal to the app
在我的应用程序中,我正在尝试构建一个图片库,以显示使用该应用程序从应用程序内创建的文件夹中拍摄的图像。
public Loader<Cursor> onCreateLoader(int id, @Nullable Bundle args) {
// File imageDestPath = new File(getApplicationContext().getFilesDir(), "cropped");
String[] projection = {
MediaStore.Files.FileColumns._ID,
MediaStore.Files.FileColumns.DATE_ADDED,
MediaStore.Files.FileColumns.DATA,
MediaStore.Files.FileColumns.MEDIA_TYPE
};
String selection = MediaStore.Files.FileColumns.MEDIA_TYPE + "="
+ MediaStore.Files.FileColumns.MEDIA_TYPE_IMAGE
+ " OR "
+ MediaStore.Files.FileColumns.MEDIA_TYPE + " = "
+ MediaStore.Files.FileColumns.MEDIA_TYPE_VIDEO;
return new CursorLoader( this,
MediaStore.Files.getContentUri( "external" ),
projection,
selection,
null,
MediaStore.Files.FileColumns.DATE_ADDED + " DESC"
);
}
我正在使用上面的代码从文件夹中获取文件。但是,上面的代码使用:
MediaStore.Files.getContentUri( "external" ),
外部目录。这会显示我 phone 的 DCIM/Camera 文件夹中的图像。当我试图将其更改为内部文件夹时,我没有得到任何图像。我尝试了以下方法:
File imageDestPath = new File(getApplicationContext().getFilesDir(), "cropped");
并在
中使用了imageDestPath
MediaStore.Files.getContentUri( imageDestPath ), //not working
MediaStore.Files.getContentUri( "internal" ), //not displaying any images - no error
MediaStore.Files.getContentUri( getFilesDir.getName() ), //not displaying any images - no error
MediaStore.Files.getContentUri( getFilesDir()+"cropped" ), //not displaying any images - no error
我想我没有正确理解 MediaStore.Files.getContentUri 部分。当我将 imageDestPath
附加到 Toast 时,它会正确显示文件夹。
When I tried to change this to an internal folder, I am not getting any images
MediaStore
无法访问这些图像,并且 getContentUri()
不支持 internal storage。
在我的应用程序中,我正在尝试构建一个图片库,以显示使用该应用程序从应用程序内创建的文件夹中拍摄的图像。
public Loader<Cursor> onCreateLoader(int id, @Nullable Bundle args) {
// File imageDestPath = new File(getApplicationContext().getFilesDir(), "cropped");
String[] projection = {
MediaStore.Files.FileColumns._ID,
MediaStore.Files.FileColumns.DATE_ADDED,
MediaStore.Files.FileColumns.DATA,
MediaStore.Files.FileColumns.MEDIA_TYPE
};
String selection = MediaStore.Files.FileColumns.MEDIA_TYPE + "="
+ MediaStore.Files.FileColumns.MEDIA_TYPE_IMAGE
+ " OR "
+ MediaStore.Files.FileColumns.MEDIA_TYPE + " = "
+ MediaStore.Files.FileColumns.MEDIA_TYPE_VIDEO;
return new CursorLoader( this,
MediaStore.Files.getContentUri( "external" ),
projection,
selection,
null,
MediaStore.Files.FileColumns.DATE_ADDED + " DESC"
);
}
我正在使用上面的代码从文件夹中获取文件。但是,上面的代码使用:
MediaStore.Files.getContentUri( "external" ),
外部目录。这会显示我 phone 的 DCIM/Camera 文件夹中的图像。当我试图将其更改为内部文件夹时,我没有得到任何图像。我尝试了以下方法:
File imageDestPath = new File(getApplicationContext().getFilesDir(), "cropped");
并在
中使用了imageDestPath
MediaStore.Files.getContentUri( imageDestPath ), //not working
MediaStore.Files.getContentUri( "internal" ), //not displaying any images - no error
MediaStore.Files.getContentUri( getFilesDir.getName() ), //not displaying any images - no error
MediaStore.Files.getContentUri( getFilesDir()+"cropped" ), //not displaying any images - no error
我想我没有正确理解 MediaStore.Files.getContentUri 部分。当我将 imageDestPath
附加到 Toast 时,它会正确显示文件夹。
When I tried to change this to an internal folder, I am not getting any images
MediaStore
无法访问这些图像,并且 getContentUri()
不支持 internal storage。