我在一个名为'DocFile'的文件夹中保存了一个pdf文件'test.pdf',并将该文件放在asses文件夹中,用于android。
现在当我试图在webview上显示pdf时,它没有显示任何内容(只有空白的webview)。
应用程序/资产/机器人/ DOCFILE /检验.pdf
myWebView.url ='/ DocFile / test.pdf';
但是相同的代码适用于IOS。 请建议。
答案 0 :(得分:1)
webview不会显示您的pdf。同样的问题我面对很久以后只使用下面的代码
File file = new File("/sdcard/sample.pdf");
if (file.exists()) {
Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {
startActivity(intent);
} catch (ActivityNotFoundException e) {
Toast.makeText(
sample.this,
"No Application Available to View PDF",
Toast.LENGTH_SHORT).show();
}