我想使用 pdf 查看器应用程序打开保存在应用程序数据文件夹中的 pdf 文件。如何使其他应用程序可访问数据文件夹内容。一些代码片段会对我有很大帮助。
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType( Uri.parse("content://" + pdf_path), "application/pdf" );
startActivity(intent);