6

As far as I understand there is still no equivalent component to iOS's QLPreviewController in Android. I'm looking for an easy way to be able to integrate display of media files (images, movies, PDFs, audio) into my app without using Intents. Are there any known 3rd party SDKs for this task?

user1195883
  • 654
  • 4
  • 19

1 Answers1

0

we show in the web view with help of gview this below code

 webView.getSettings().setJavaScriptEnabled(true);
        String url = "http://docs.google.com/gview?embedded=true&toolbar=hide&url=" + link;
        webView.loadUrl(url);
saravanan
  • 1,082
  • 1
  • 15
  • 30