11

我正在使用外部 SD 卡的 PersistableUriPermission 并将其存储以供进一步使用。现在我希望当用户从我的应用程序中的文件列表中向我提供文件路径时,我想编辑文档并重命名它。

所以我有要编辑的文件的文件路径。

我的问题是如何从我的 TreeUri 中获取该文件的 Uri 以便编辑文件。

4

1 回答 1

22

访问 SD 卡的文件

使用DOCUMENT_TREE对话框获取 sd 卡的Uri.

告知用户如何sd-card在对话框中选择。(附图片或gif动画)

// call for document tree dialog
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE);
startActivityForResult(intent, REQUEST_CODE_OPEN_DOCUMENT_TREE);

onActivityResult您将拥有选定的Uri目录。(sdCardUri)

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    switch (requestCode) {
        case REQUEST_CODE_OPEN_DOCUMENT_TREE:
            if (resultCode == Activity.RESULT_OK) {
                sdCardUri = data.getData();
             }
             break;
     }
  }

现在必须检查用户是否,

一个。选择了sd卡

湾。选择我们文件所在的 sd 卡(某些设备可能有多个 sd 卡)。


我们通过从 sd root 到我们的文件的层次结构查找文件来检查 a 和 b。如果找到文件,则同时获取 a 和 b 条件。

//First we get `DocumentFile` from the `TreeUri` which in our case is `sdCardUri`.
DocumentFile documentFile = DocumentFile.fromTreeUri(this, sdCardUri);

//Then we split file path into array of strings.
//ex: parts:{"", "storage", "extSdCard", "MyFolder", "MyFolder", "myImage.jpg"}
// There is a reason for having two similar names "MyFolder" in 
//my exmple file path to show you similarity in names in a path will not 
//distract our hiarchy search that is provided below.
String[] parts = (file.getPath()).split("\\/");

// findFile method will search documentFile for the first file 
// with the expected `DisplayName`

// We skip first three items because we are already on it.(sdCardUri = /storage/extSdCard)
for (int i = 3; i < parts.length; i++) {
    if (documentFile != null) {
        documentFile = documentFile.findFile(parts[i]);
    }
  }

if (documentFile == null) {

    // File not found on tree search
    // User selected a wrong directory as the sd-card
    // Here must inform the user about how to get the correct sd-card
    // and invoke file chooser dialog again.  

    // If the user selects a wrong path instead of the sd-card itself,  
    // you should ask the user to select a correct path.  
    // I've developed a gallery app with this behavior implemented in it.  
    // https://play.google.com/store/apps/details?id=com.majidpooreftekhari.galleryfarsi
    // After you installed the app, try to delete one image from the  
    // sd-card and when the app requests the sd-card, select a wrong path  
    // to see how the app behaves.  

 } else {

    // File found on sd-card and it is a correct sd-card directory
    // save this path as a root for sd-card on your database(SQLite, XML, txt,...)

    // Now do whatever you like to do with documentFile.
    // Here I do deletion to provide an example.


    if (documentFile.delete()) {// if delete file succeed 
        // Remove information related to your media from ContentResolver,
        // which documentFile.delete() didn't do the trick for me. 
        // Must do it otherwise you will end up with showing an empty
        // ImageView if you are getting your URLs from MediaStore.
        // 
        Uri mediaContentUri = ContentUris.withAppendedId(
                MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
                longMediaId);
        getContentResolver().delete(mediaContentUri , null, null);
    }


 }

我的应用程序上错误的 sd 卡路径选择行为:

要检查错误 sd-card 路径选择的行为,请安装应用程序并尝试删除 sd-card 上的图像并选择错误的路径而不是 sd-card 目录。
日历库:https ://play.google.com/store/apps/details?id=com.majidpooreftekhari.galleryfarsi

笔记:

您必须为清单内的外部存储和应用程序内的 os>=Marshmallow 提供访问权限。 https://stackoverflow.com/a/32175771/2123400


编辑 SD 卡的文件

要编辑 sd 卡上的现有图像,如果您想调用另一个应用程序为您执行此操作,则不需要上述任何步骤。

在这里,我们调用具有编辑图像功能的所有活动(来自所有已安装的应用程序)。(程序员在清单中标记他们的应用程序,因为它能够提供来自其他应用程序(活动)的可访问性)。

在您的 editButton 单击事件上:

String mimeType = getMimeTypeFromMediaContentUri(mediaContentUri);
startActivityForResult(Intent.createChooser(new Intent(Intent.ACTION_EDIT).setDataAndType(mediaContentUri, mimeType).putExtra(Intent.EXTRA_STREAM, mediaContentUri).addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION), "Edit"), REQUEST_CODE_SHARE_EDIT_SET_AS_INTENT);

这就是获取 mimeType 的方法:

public String getMimeTypeFromMediaContentUri(Uri uri) {
    String mimeType;
    if (uri.getScheme().equals(ContentResolver.SCHEME_CONTENT)) {
        ContentResolver cr = getContentResolver();
        mimeType = cr.getType(uri);
    } else {
        String fileExtension = MimeTypeMap.getFileExtensionFromUrl(uri
                .toString());
        mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(
                fileExtension.toLowerCase());
    }
    return mimeType;
}

笔记:

在 Android KitKat(4.4) 上不要要求用户选择 sd-card,因为在这个版本的 AndroidDocumentProvider上不适用,因此我们没有机会使用这种方法访问 sd-card。查看DocumentProvider https://developer.android.com/reference/android/provider/DocumentsProvider.html
的 API 级别, 我找不到适用于 Android KitKat(4.4) 的任何内容。如果您发现任何对 KitKat 有用的东西,请与我们分享。

在 KitKat 以下的版本中,操作系统已经提供了对 sd 卡的访问权限。

于 2016-08-23T14:35:54.080 回答