Open PDF in a WebView
问题 I want to open a PDF in my WebView, and I found and combined codes on this forum. But it catches the "No PDF application found" although I have multiple PDF apps installed, including Adobe Reader. Here the code: private class PsvWebViewClient extends WebViewClient { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { view.loadUrl(url); if (url.contains(".pdf")) { Uri path = Uri.parse(url); Intent pdfIntent = new Intent(Intent.ACTION_VIEW); pdfIntent.setDataAndType