从Fragment中的Content Uri获取路径

时间:2018-07-08 01:40:30

标签: android android-fragments android-context

我使用以下方法从Activity中的Content Uri获取路径,并且效果很好;

// region Helpers

/**
 * Get a file path from a Uri. This will get the the path for Storage Access
 * Framework Documents, as well as the _data field for the MediaStore and
 * other file-based ContentProviders.
 *
 * @param context The context.
 * @param uri The Uri to query.
 * @author paulburke
 */
public static String getPath(final Context context, final Uri uri) {

    final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;

    Log.d(TAG, "getPath: (context) " + context);

    // DocumentProvider
    if (isKitKat && DocumentsContract.isDocumentUri(context, uri)) {
        // ExternalStorageProvider
        if (isExternalStorageDocument(uri)) {
            final String docId = DocumentsContract.getDocumentId(uri);
            final String[] split = docId.split(":");
            final String type = split[0];

            if ("primary".equalsIgnoreCase(type)) {
                return Environment.getExternalStorageDirectory() + "/" + split[1];
            }

            // TODO handle non-primary volumes
        }
        // DownloadsProvider
        else if (isDownloadsDocument(uri)) {

            final String id = DocumentsContract.getDocumentId(uri);
            final Uri contentUri = ContentUris.withAppendedId(
                    Uri.parse("content://downloads/public_downloads"), Long.valueOf(id));

            return getDataColumn(context, contentUri, null, null);
        }
        // MediaProvider
        else if (isMediaDocument(uri)) {
            final String docId = DocumentsContract.getDocumentId(uri);
            final String[] split = docId.split(":");
            final String type = split[0];

            Uri contentUri = null;
            if ("image".equals(type)) {
                contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
            } else if ("video".equals(type)) {
                contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
            } else if ("audio".equals(type)) {
                contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
            }

            final String selection = "_id=?";
            final String[] selectionArgs = new String[] {
                    split[1]
            };

            return getDataColumn(context, contentUri, selection, selectionArgs);
        }
    }
    // MediaStore (and general)
    else if ("content".equalsIgnoreCase(uri.getScheme())) {
        return getDataColumn(context, uri, null, null);
    }
    // File
    else if ("file".equalsIgnoreCase(uri.getScheme())) {
        return uri.getPath();
    }

    return null;
}

/**
 * Get the value of the data column for this Uri. This is useful for
 * MediaStore Uris, and other file-based ContentProviders.
 *
 * @param context The context.
 * @param uri The Uri to query.
 * @param selection (Optional) Filter used in the query.
 * @param selectionArgs (Optional) Selection arguments used in the query.
 * @return The value of the _data column, which is typically a file path.
 */
public static String getDataColumn(Context context, Uri uri, String selection,
                                   String[] selectionArgs) {

    Cursor cursor = null;
    final String column = "_data";
    final String[] projection = {
            column
    };

    try {
        cursor = context.getContentResolver().query(uri, projection, selection, selectionArgs,
                null);
        if (cursor != null && cursor.moveToFirst()) {
            final int column_index = cursor.getColumnIndexOrThrow(column);
            return cursor.getString(column_index);
        }
    } finally {
        if (cursor != null)
            cursor.close();
    }
    return null;
}


/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is ExternalStorageProvider.
 */
public static boolean isExternalStorageDocument(Uri uri) {
    return "com.android.externalstorage.documents".equals(uri.getAuthority());
}

/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is DownloadsProvider.
 */
public static boolean isDownloadsDocument(Uri uri) {
    return "com.android.providers.downloads.documents".equals(uri.getAuthority());
}

/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is MediaProvider.
 */
public static boolean isMediaDocument(Uri uri) {
    return "com.android.providers.media.documents".equals(uri.getAuthority());
}

// end region Helpers

getPath通过“ this”上下文和Uri调用

String filePath = getPath(this, returnUri);

现在,我有一个Fragment,我需要获取一个路径以获取要显示的文件名,但我无法获取“ getPath”以返回除null以外的任何内容。我知道片段的上下文引用了它所附加的活动,因此,上下文始终引用MyActivity,无论从何处调用它(MyActivity或MyFragment)。

我只是不明白如何解决这个问题。我尝试将以上代码作为辅助程序添加到我的Fragment代码中,但是它返回null。我尝试将上面的代码添加回MyActivity,并使用MyActivity.getPath调用它,并返回null。我试过用getContext(),getApplication(),getApplicationContext()以及我可以抛出的任何其他变化来调用它。我已经在Google上搜索和阅读了几个小时,并尝试了无数的“解决方案”,这让我很沮丧。

我也曾尝试过考虑如何使MyActivity将数据传递给Fragment,但是我处于MyFragment的onActivityResult中,所以我什至不知道那时候是否有可能。

通常情况下,我可以在几分钟内找到Google并为我的99%的问题找到解决方案,但这确实让我感到困惑。如果我能提供进一步的信息,请询问。

谢谢!

更新(07/09/2018)

似乎我在测试此代码时无意间切换了设备,因此可以正常工作的原始代码仍然可以工作。它可以与运行Android 7.0,API 24的Samsung S7(电话)一起使用,但不能与运行Android 5.0.2 API 21的Samsung Tablet一起使用(代码用于检查== KitKat,API 19)。

问题似乎是这些设备返回的授权提供者。例如,两个设备的返回URI如下;

三星S7返回URI-getPath:(uri)content://com.android.providers.downloads.documents/document/1397

三星Tab 4返回URI-getPath:(uri)content://com.google.android.apps.docs.storage/document/acc%3D1%3Bdoc%3D2193

因此,我假设在API 21之后的某个时刻更改了授权提供者,但是,在这一点上,我一直使用Google搜索,似乎无法在任何地方找到提供者的列表来确认这一点。

1 个答案:

答案 0 :(得分:0)

似乎是我是菜鸟,正在学习课程。

我切换了设备,并从那里下载了测试文件。在S7上是下载,在Tab 4上是从我的Google云端硬盘下载的。啊!

如果文件在设备本地,则上面的代码在两个设备上均适用。它与上下文无关。

最后,我的解决方案很简单...实际上,我摆脱了使用上面的代码来获取路径的过程,因为我确实不需要该路径。我需要其他信息,例如mime类型,文件名和扩展名。

解决方案

根据返回的URI创建DocumentFile对象。

现在,您可以像这样访问哑剧类型,文件名和扩展名;

DocumentFile documentFile = DocumentFile.fromSingleUri(getContext(), returnUri);

String mimeType = documentFile.getType();
String filePath = YourActivityClass.getPath(mContext, returnUri);
String fileName = documentFile.getName();
String extension = fileName.substring(fileName.lastIndexOf("."));