我有一个文件路径:file:///storage/emulated/0/Android/data/rocks.v d 。*****。develop/files/1Q 2017财务业绩.pdf
这是代码:
Intent intent = new Intent(Intent.ACTION_VIEW);
try {
String newFilePath = filePath.replaceAll("%20", " ");
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
intent.setDataAndType(Uri.parse(newFilePath), "application/pdf");
} else {
Uri uri = Uri.parse(newFilePath);
File file = new File(uri.getPath());
if (file.exists()){
uri = FileProvider.getUriForFile(context, context.getPackageName() + ".provider", file);
intent.setDataAndType(uri, "application/pdf");
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
}
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
context.startActivity(intent);
我的uri = content://rocks.v d 。*****。develop.provider/files/Android/data/rocks.v d 。*****。develop/files/1Q%202017 %20financial%20results.pdf
Pdf阅读器正在打开,出现意外错误。
怎么了?
最佳答案
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
在这里,您将清除所有现有标志,尤其是
FLAG_GRANT_READ_URI_PERMISSION
。因此,您启动的 Activity 将无法访问您的内容。从
setFlags()
切换到addFlags()
。关于android - 在牛轧糖上打开PDF,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44025584/