如何使用 WebView 或 AnyConcept 从 android 中的内部存储获取 pdf
how to get pdf from internal storage in android Using WebView or AnyConcept
如何使用 WebView 或 AnyConcept 从 android 中的内部存储获取 pdf。我必须从内部 storage.Can 中获取 activity 中的 pdf,你们中的任何人都让我知道这件事。谢谢。
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 文件名
如何使用 WebView 或 AnyConcept 从 android 中的内部存储获取 pdf。我必须从内部 storage.Can 中获取 activity 中的 pdf,你们中的任何人都让我知道这件事。谢谢。
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 文件名