30

我正在尝试使用 android 4.4 的存储访问框架

我开发了一个虚拟应用程序,它会触发活动开始的意图。

    Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
    intent.addCategory(Intent.CATEGORY_OPENABLE);
    startActivityForResult(intent, READ_REQUEST_CODE);

我还开发了另一个虚拟应用程序作为文件提供程序。

        <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.saf"
    android:versionCode="1"
    android:versionName="1.0" >
<uses-sdk
    android:minSdkVersion="19"
    android:targetSdkVersion="19" />

<uses-permission android:name="android.permission.MANAGE_DOCUMENTS"/>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.saf.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <provider
        android:name="com.example.saf.MyFileProvider"
        android:authorities="com.example.saf.documents"
        android:exported="@bool/is_kitkat"
        android:enabled="@bool/is_kitkat"
        android:grantUriPermissions="@bool/is_kitkat"
        android:permission="android.permission.MANAGE_DOCUMENTS">
        <intent-filter>
            <action android:name="android.content.action.DOCUMENTS_PROVIDER" />
        </intent-filter>
    </provider>

</application>

我已经实现了 MyFileProvider 类。

但是当我启动用户应用程序(触发意图的应用程序)时,我收到以下错误

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.OPEN_DOCUMENT cat=[android.intent.category.OPENABLE] }

我只是在关注android的开发者文档。有什么想法我可能做错了吗?

编辑:这是我最新的清单。我还需要对 MyFileProvider“扩展 DocumentsProvider”进行“正确”实现吗?我现在可以在函数中返回 null 吗?

4

3 回答 3

53

添加一个 mime 类型,或者只是intent.setType("*/*").

这似乎是一个已知问题setType()是必须的。

编辑:您还需要添加android:enabled="true",请注意您应该从值中引用它,而不是直接引用它,以便仅为 >=kitkat 启用它。所以android:enabled="@bool/is_kitkat",<bool name="atLeastKitKat">false</bool>/res/values/<bool name="atLeastKitKat">true</bool>/res/values-v19/

于 2014-01-10T13:12:21.740 回答
8

要打开所有文件,请添加以下行:

intent.setType("*/*") ;

如果您需要过滤以显示图像,请添加以下行:

intent.setType("image/*");
于 2014-12-30T14:48:45.963 回答
-1

只是表达你的意图,比如,

     Intent intent = new Intent("android.intent.action.GET_CONTENT");
    ((Intent)intent).addCategory("android.intent.category.OPENABLE");
    ((Intent)intent).setType("*/*");
于 2017-07-30T19:45:11.863 回答