30

Android 4.4のStorage Access Frameworkを試しています

アクティビティの開始時にインテントを起動するダミーアプリを開発しました。

    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] }

私はアンドロイドの開発者ドキュメントに従っていました。私が間違っているかもしれないアイデアはありますか?

編集:これが私の最新のマニフェストです。また、「DocumentsProvider を拡張する」MyFileProvider の「適切な」実装が必要ですか? 今のところ、関数で null を返すことはできますか?

4

3 に答える 3

8

すべてのファイルを開くには、次の行を追加します。

intent.setType("*/*") ;

画像を表示するためにフィルタリングする必要がある場合は、次の行を追加します。

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