Android media viewer SDK (equivalent of iOS QLPreviewController)
Asked Answered
H

1

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?

Hemo answered 23/3, 2016 at 13:55 Comment(2)
you got any solution.please share meEndoplasm
@saravananI'm still using github.com/JoanZapata/android-pdfview for PDF and regular intents for pictures and movies.Hemo
E
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);
Endoplasm answered 20/3, 2018 at 13:16 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.