6

我正在使用此处指定的新 Kitkat 存储访问框架 (SAF): https ://developer.android.com/guide/topics/providers/document-provider.html

Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("image/*");
startActivityForResult(intent, 0);

这与示例代码相同,但图像过滤器不起作用。S5 或 Note3 上没有任何显示。视频 (video/*) 也是如此。我还尝试了不同的模式,例如/无济于事。

这看起来像是他们应该解决的三星问题,我只是想知道是否有人知道解决方法。

4

2 回答 2

9

我在三星galaxy s4上遇到了同样的问题。在我的研究中,我发现 Galaxy s4 不支持媒体文档提供程序。通过查询媒体提供者接口解决了它。这就是我所做的:

private void launchGallery()
{
    final Intent intent = new Intent();
    // Api 19 and above should access the Storage Access Framework
    if ( isMediaProviderPresent())
        intent.setAction(Intent.ACTION_OPEN_DOCUMENT);
    else
        intent.setAction(Intent.ACTION_GET_CONTENT);
    intent.setType("image/*");
    intent.addCategory(Intent.CATEGORY_OPENABLE);

    // Multi Picking is supported on api 18 and above.
    if (isApi18Above())
        intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);

    startActivityForResult(Intent.createChooser(intent,"chooser"),
        RESULT_PHOTO_FROM_GALLERY);
}


private boolean isMediaProviderSupported()
{
    if(isApi19Above())
    {
        final PackageManager pm = getActivity().getPackageManager();
        // Pick up provider with action string
        final Intent i = new Intent(DocumentsContract.PROVIDER_INTERFACE);
        final List<ResolveInfo> providers = pm.queryIntentContentProviders(i, 0);
        for (ResolveInfo info : providers)
        {
            if(info != null && info.providerInfo != null)
            {
                final String authority = info.providerInfo.authority;
                if(isMediaDocumentProvider(Uri.parse("content://"+authority)))
                    return true;
            }
        }
    }
    return false;
}

  private static boolean isMediaDocumentProvider(final Uri uri)
    {
        return "com.android.providers.media.documents".equals(uri.getAuthority());
    }
于 2015-01-23T20:45:53.143 回答
3

我在我的 Galaxy S4 上也有同样的情况,我发现的唯一解决方法是重用旧方法:

Intent photoPickerIntent = new Intent();    
photoPickerIntent.setAction(Intent.ACTION_GET_CONTENT);
photoPickerIntent.setType("image/*");
startActivityForResult(photoPickerIntent, 0);

但我想您首先要确保使用特定设备,因为它可以与其他设备上的 Intent.ACTION_OPEN_DOCUMENT 很好地配合使用......(我在 Wiko Cink Slim 和 Nexus 5 上尝试了 Android 4.4.2)。

希望对你有帮助

于 2014-07-08T11:35:43.937 回答