I have url of pdf file in my localhost. how i can load the pdf in webview android application.
String pdf = "my localhost pdf url"
WebView webView = findViewById(R.id.web);
webView.setWebViewClient(new WebViewClient());
webView.getSettings().setSupportZoom(true);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("https://docs.google.com/gview?embedded=true&url=" +pdf);
this method is only for pdf file that stored in server.
Any methods to show pdf(stored in localhost) in webview ? with or without using third party libraries.