-3

Is there any way to load and open files such as doc,docx,xls,pdf,etc. from sdcard to webview?

shripal
  • 1,222
  • 4
  • 19
  • 40
  • not possible for pdf file, but here there is one solution written by Commonsware http://stackoverflow.com/questions/24712140/how-to-open-pdf-file-from-sd-card-in-webview-in-android – Silvans Solanki Mar 29 '16 at 07:46

2 Answers2

0

WebView can not open these files. You need to open them in a corresponding app like Microsoft Word, Excel, ... and Google PDF Viewer.

xdevs23
  • 3,824
  • 3
  • 20
  • 33
0

You can not open files in webview directly from sdcard, but alternet solution is you can upload them in google drive first and can open it in webview. like below.

WebView webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true); 
String pdf = "http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf";
webview.loadUrl("http://drive.google.com/viewerng/viewer?embedded=true&url=" + pdf);
Mehul Santoki
  • 1,208
  • 1
  • 12
  • 25