我想的是Android 4.4未找到可處理意向活動 - android.intent.action.OPEN_DOCUMENT
我的手放在存儲訪問架構我已經開發了一個虛擬應用程序,它觸發對活動開始的意圖。
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開發者文檔。任何想法我可能做錯了什麼?
編輯: 這是我最新的Manifest。 我也需要有一個「適當的」MyFileProvider「擴展DocumentsProvider」的實現?我現在可以在函數中返回null嗎?
您的虛擬應用程序是否使用權限「android.permission.MANAGE_DOCUMENTS」? –
@SherifelKhatib - 實際上它沒有這個權限。但我添加並檢查。仍然是同樣的錯誤。 – yashdosi