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?
Asked
Active
Viewed 477 times
6
-
you got any solution.please share me – saravanan Mar 20 '18 at 13:13
-
1@saravananI'm still using https://github.com/JoanZapata/android-pdfview for PDF and regular intents for pictures and movies. – user1195883 Mar 22 '18 at 08:44
1 Answers
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