gpt4 book ai didi

android - 使用 FileProvider uri 打开 PDF 文件会打开一个空白屏幕

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:30:03 25 4
gpt4 key购买 nike

我正在我的应用程序上创建一个 PDF 文件并将其写入外部存储,“下载”目录。现在,当我使用 FileProvider uri 通过我的应用程序打开它时。使用 FileProvider uri 查看时,Google PDF 查看器显示空白屏幕,Adobe Acrobat 甚至无法打开该文件。这是我编写文件然后尝试显示它的代码。请注意,我正在发送本地通知并尝试通过通知打开文件。

try {

File mypath=new File( Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),mParam1.getEmlak_id()+".pdf");
document.writeTo(new FileOutputStream(mypath));

document.close();

NotificationManager notificationManager = (NotificationManager)getContext().getSystemService(Context.NOTIFICATION_SERVICE);

File file = new File( Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),mParam1.getEmlak_id()+".pdf");
Uri pdfUri = FileProvider.getUriForFile(getContext(), getContext().getApplicationContext().getPackageName() + ".com.onur.emlakdosyasi.provider", file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(pdfUri, "application/pdf");
intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

//use the flag FLAG_UPDATE_CURRENT to override any notification already there
PendingIntent contentIntent = PendingIntent.getActivity(getContext(), 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

Notification notification = new Notification.Builder(getContext())
.setContentTitle("title")
.setContentText("content")
.setSmallIcon(R.drawable.pdficon)
.setContentIntent(contentIntent)
.setDefaults(Notification.DEFAULT_ALL)
.setPriority(Notification.PRIORITY_HIGH)
.build();


notificationManager.notify(10, notification);

} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}

这是我在 AndroidManifest.xml 上的提供者

<provider
android:name=".GenericFileProvider"
android:authorities="${applicationId}.com.onur.emlakdosyasi.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>

这是提供者路径:

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
<external-path name="Download" path="Download/"/>

请注意,我可以手动从“下载”文件夹中打开保存的文件。我只是无法通过 FileProvider 提供的 uri 打开它。

将“exported”字段更改为 true 不会改变任何内容。

最佳答案

我有同样的问题,但在我的例子中是这条线:

intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

那个不见了。

关于android - 使用 FileProvider uri 打开 PDF 文件会打开一个空白屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48035736/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com