Итак, вот сценарий:
Я загружаю PDF из сети и сохраняю его в /0/Download/NSIT - Notices/"fileName".pdf
Теперь отправляем Намерение так:
private void openPDF(String fileName) {
Log.d(TAG, "openPDF: called");
Intent intent = new Intent(Intent.ACTION_VIEW);File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/Download", "NSIT - Notices");
File myPDF = new File(Environment.getExternalStorageDirectory() + "/Download/NSIT - Notices", fileName + ".pdf");
Uri uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider", myPDF);
Log.d(TAG, "openPDF: intent with uri: " + uri);
intent.setDataAndType(uri, "application/pdf");
context.startActivity(Intent.createChooser(intent, "Open with..."));
}
Теперь любой читатель PDF (Google Drive PDF Reader, System PDF Viewer) говорит
The File Does Not Exist
Изображение:
Гугл сидит, ничего не делая (поэтому не включил свое изображение)
Mainfest.xml
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
Provider_path.xml
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>
Я создаю файл здесь в AsyncTask, но открываю из postExecute этого AsyncTask
File myDir = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/Download", "NSIT - Notices");
File myPDF = new File(myDir, params[1] + ".pdf");
if (!myDir.exists())
myDir.mkdirs();
try {
fileOutputStream = new FileOutputStream(myPDF);
fileOutputStream.write(response.bodyAsBytes());
fileOutputStream.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
Log.d(TAG, "doInBackground: Download complete");
Logcat
Раньше он бросал FileUriExposedException
, затем я исправил эту вещь FileProvider
. Проблема в том, что файл pdf, загруженный моим приложением, успешно создан, и я могу открыть его из любого файлового менеджера (теперь ES File Explorer), но не из моего приложения :(. Я новичок в FileProvider
. Нужна помощь!
PS: Это не проблема моего устройства. Протестировано на двух других телефонах с разными ПЗУ и API> = 23