内部ストレージのカスタム フォルダーにいくつかのファイルがあります。Adobe などの外部アプリケーションを使用してファイルを開く必要があります。FileProvider を使用して開く予定でした。しかし、ドキュメントを開こうとすると、サードパーティのアプリケーションが停止します。コードでどのような間違いを犯したのか本当にわかりません。
パッケージ名 = "com.example.doc"
アクティビティは package = "com.example.doc.activities" にあります
マニフェスト
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.example.doc.fileprovider"
android:exported="false"
android:grantUriPermissions="true"
android:readPermission="com.example.doc.fileprovider.READ">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepath" />
</provider>
res/xml/filepath.xml
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="files" path="." />
</paths>
アクティビティ
//tempfilePath = /data/data/com.example.doc/files/RBC/sample.docx
File file = new File(tempfilePath);
Uri exportUri = FileProvider.getUriForFile (this, "com.example.doc.fileprovider", file);
Intent docViewIntent = new Intent();
docViewIntent.setAction(Intent.ACTION_VIEW);
docViewIntent.setDataAndType(exportUri , extensionType);
docViewIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
docViewIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(docViewIntent);
マニフェストで権限を指定する必要がありますか?
どんな助けでも大歓迎です..
ありがとうジョミア