We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I am trying out to show a PDF from remote URL but I don't able to show it. I don't know why. Any ideas?. I have the following code:
val uri = Uri.parse(url) pdfView.fromUri(uri)
Regards
The text was updated successfully, but these errors were encountered:
Its not allowed yet.
Sorry, something went wrong.
GlobalScope.launch { val input: InputStream = URL(args.contentUrl).openStream() pdfContent.fromStream(input) .enableSwipe(true) // allows to block changing pages using swipe .enableDoubletap(true).defaultPage(0) .enableAnnotationRendering(false) // render annotations (such as comments, colors or forms) .password(null).scrollHandle(null).enableAntialiasing(true).spacing(0) .pageFitPolicy(FitPolicy.WIDTH).onLoad(object : OnLoadCompleteListener { override fun loadComplete(p0: Int) { pbLoading.isVisible = false } }).load() }
try this worked for my @moisesvs
No branches or pull requests
Hi,
I am trying out to show a PDF from remote URL but I don't able to show it. I don't know why. Any ideas?. I have the following code:
Regards
The text was updated successfully, but these errors were encountered: