1. ホーム
  2. android

android.content.ActivityNotFoundException を解決します。Intent問題を処理するActivityが見つからない

2022-02-18 13:29:21
<パス

以下のエラーが報告されます。

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW cat=[android.intent.category DEFAULT] dat=content://***.fileProvider/files_root/Android/data/***/cache/ofddata/5bd4483f46db4ea58fe3e7a0cb387cf8.ofd typ= application/ofd flg=0x10000003 }


この問題は何時間も私を悩ませましたが、その解決策はここに記されています。

AndroidManifest.xmlのacitivytにintent-filterを追加します。

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