I am creating an Android app. How do I display a PDF file inside an Android from a url? without using already available system's pdf viewer application. Currently i am using webview and the code is:
web_view.loadUrl("http://docs.google.com/gview?embedded=true&url=" + pdf_url);
but it is taking too much time to load and display PDF file. Is there any another fast way to do this.