打开Pdf文件?

时间:2018-05-22 06:52:08

标签: android

我想在Android中打开pdf 我目前正在使用代码

File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + path.get((int) v.getTag()));
                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setDataAndType(Uri.fromFile(file), "application/pdf");
                intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
                mContext.startActivity(intent);

但该文件目前尚未打开。

此致

0 个答案:

没有答案