In my application i have to show pdf file in webview.Already i have done using this code but in this pdf file text size is small.so i am unable to read it using zooming option.
i want pdf text clearly using code.
please help...
WebView webview = new WebView(this);
setContentView(webview);
String myPDFURL = "https://bt-pdf.s3.amazonaws.com/20120711/pdfs/BT20120711-BTS-001-00.pdf";
String link = null;
try {
link = "https://docs.google.com/viewer?url=" + URLEncoder.encode(myPDFURL, "UTF-8") + "&embedded=true";
webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setBuiltInZoomControls(true);
webview.getSettings().getDefaultFixedFontSize();
webview.loadUrl(link);
} catch (Exception e) {
e.printStackTrace();
}
thanking you