如何从Android内部存储中获取pdf使用WebView或AnyConcept

时间:2017-03-22 04:41:33

标签: android webview androidpdfviewer

如何从Android内部存储中获取pdf使用WebView或AnyConcept。我必须从内部存储中获取pdf。任何人都可以告诉我这件事。谢谢。

1 个答案:

答案 0 :(得分:0)



String filename = null;
                File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath() +"/"+ filename);
                Intent target = new Intent(Intent.ACTION_VIEW);
                target.setDataAndType(Uri.fromFile(file),"application/pdf");
                target.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);

                Intent intent = Intent.createChooser(target, "Open File");
startActivity(intent);




并提供pdf文件名