I have searched already and not found any solution for show pdf file in application
The point is i have to show pdf from asset or raw folder not from web
I have already tried in webview with code
WebView webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
webview.setContentDescription("application/pdf");
webview.loadUrl("file:///android_asset/button11.pdf");
but its not woking.
i need help on that thanks in advance