gpt4 book ai didi

android如何使其他应用程序可访问数据文件夹内容

转载 作者:行者123 更新时间:2023-11-29 22:02:43 25 4
gpt4 key购买 nike

我想使用 pdf 查看器应用程序打开保存在应用程序数据文件夹中的 pdf 文件。如何使其他应用程序可访问数据文件夹内容。一些代码 fragment 会对我有很大帮助。

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType( Uri.parse("content://" + pdf_path), "application/pdf" );
startActivity(intent);

最佳答案

File file = new File(“/sdcard/read.pdf”);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file),”application/pdf”);
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);

您可以通过此方法从外部存储器访问 pdf 文件。确保您提供了正确的路径。

关于android如何使其他应用程序可访问数据文件夹内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11554559/

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