如何从Android内部存储中获取pdf使用WebView或AnyConcept。我必须从内部存储中获取pdf。任何人都可以告诉我这件事。谢谢。
答案 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文件名