Skip to main content

Display pdf within app on android?


I got very frustrated when I realized that android is not able to display pdfs (in a webview or whatever) out-of-the-box.



So my question, are there any (os) jars or classes to display a pdf document within an app?



Has anybody experience with using some of the standard java pdf viewer libraries on Android? The libraries don't need to be free, only usable with android phones.



I heard that itext got ported over to android. Has one of you did something with it yet?


Source: Tips4allCCNA FINAL EXAM

Comments

  1. Displaying a PDF document is a rather complex operation. I'll be stunned if there's a JAR for doing that in Android any time soon that is reasonably feature-complete. If you wanted to try, you could start with this project.

    That being said, you can use PackageManager to see if the user has an app installed that views PDFs, and if so, launch into that. There are a few of these available.

    ReplyDelete
  2. If you would like to add a feature in your android app to view PDF documents, I would suggest you to compile and use library within this project. I've had the exact same problem as you in the past and searched for the reliable libraries to support that kind of feature into my app and finally found it.

    The library, however, it's a bit tricky to use. It's not a standard Java jar library but rather it's JNI
    library (C language) for Android, and you need to compile it yourself if you decide to use it within your application. But the results are better than most of the other jar pdf libraries out there if you're planning to use it in Android platform (i've had tested several pdf libraries/projects including andpdf & pdfbox). I've used it myself and it has fast and good quality rendering.

    Make sure to follow the instructions on the site on how to compile the core libraries.

    ReplyDelete
  3. If you are looking to embed the PDF as a view in your application, then you can try this vudroid.

    I have been using this by including this project as a library and some minor tweaks to the library. They have provided a PDFView and a service which renders the view. Works for me; a bit slow though.

    You can also use google docs viewer if your files are on the web. Works great for me.

    Hope that helps.

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.