Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 is: are there any (OS) JARs or classes to display a PDF document within an app?

Does anybody have 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. Have any of you done something with it yet?

share|improve this question
1  
This is good example for Showing pdf files. Need to refer Readme.txt file in below link for using this . github.com/jblough/Android-Pdf-Viewer-Library – Ramesh Akula Jul 21 '12 at 10:04
here is an example of using that library: stackoverflow.com/a/16294833/2027232 – Nicolas Tyler May 13 at 7:45

5 Answers

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.

share|improve this answer
2  
This answer is outdated. There are many pdf projects going on. I have succesfully used iText to dynamically generate pdfs of high quality with loads of options like: search text, zoom, scroll, paging etc etc – Entreco Jan 26 '12 at 9:05
10  
@Entreco: The OP's question was for viewing PDFs. iText is for generating and modifying PDFs. – CommonsWare Feb 2 '12 at 18:17
2  
Wow this answer is still relevant - nothing yet on a feature complete free android pdf viewer jar and google doesnt even seem to be bothered – Slartibartfast Jul 25 '12 at 10:48
1  
If GPL is acceptable, MuPDF is rather awesome, pretty much feature-complete, fast and free. However, if GPL is not acceptable, MuPDF is also insanly pricy (just like FoxIt, Qoppa and Adobe's thing). – Paul-Jan Nov 4 '12 at 19:17
@CommonsWare ok can please help me on how to display the pdf with in app using jar files – Goofy Feb 13 at 9:45
show 1 more comment

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.

share|improve this answer
1  
Thx for your post. Currently my app fires a pdf-intent; if that fails the app displays an alert view (with an optional link to Adobe's pdf reader app). Will give your linked library a chance in the future. – alexleutgoeb Nov 5 '10 at 22:48
thanks for info,can please tell who to integrate box pdf into my android app?i new in android so if possible then me link that contain all steps – Sameer Z. Apr 16 '11 at 5:28
@SameerZ. PDFPagesView theoretically was meant to be reusable, so with little changes you might be able to use it as any other View. General idea is that you put PDFPagesView in your layout and "feed" PDF object to PDFPagesView. PDFPagesView asks PDF instance for rendered pages as necessary. And since PDF generates bitmaps asynchronously, there's also API that PDF uses to inform PDFPagesView that new bitmaps are ready. Please remember that APV is GPL-licensed, just like underlying MuPDF library. This means that you're required to publish your source code. – maciej Jan 27 '12 at 14:49
1  
Also you should probably check out git.ghostscript.com/?p=mupdf.git;a=tree;f=android - this is example Android app created by authors of MuPDF – maciej Jan 27 '12 at 14:53
OK. Let's say I give up on GPL-ed APV. How about I import andPDF which is LGPL licence in apps for commercial use. Suppose I do not modify the jar file. But dynamic-link to the jar file in Android is not quite possible.... – Yeung Dec 17 '12 at 7:49

open pdf

public class MyPdfViewActivity extends Activity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    WebView mWebView=new WebView(MyPdfViewActivity.this);
    mWebView.getSettings().setJavaScriptEnabled(true);
    mWebView.getSettings().setPluginsEnabled(true);
    mWebView.loadUrl("https://docs.google.com/gview?embedded=true&url="+LinkTo);
    setContentView(mWebView);
  }
}
share|improve this answer
1  
you save my life – tai.tran2008 Jun 27 '12 at 8:00

I have made a hybrid approach from some of the answers given to this and other similar posts:

This solution checks if a PDF reader app is installed and does the follwing:

  • If a reader is installed, download the PDF file to the device and start a PDF reader app
  • If no reader is installed, ask the user if he wants to view the PDF file online through Google Drive

NOTE! This solution uses the Android DownloadManager class, which was introduced in API9 (Android 2.3 or Gingerbread). This means that it doesn't work on Android 2.2 or earlier.

I wrote a blog post about it here, but I've provided the full code below for completeness:

public class PDFTools {
    private static final String GOOGLE_DRIVE_PDF_READER_PREFIX = "http://drive.google.com/viewer?url=";
    private static final String PDF_MIME_TYPE = "application/pdf";
    private static final String HTML_MIME_TYPE = "text/html";

    /**
     * If a PDF reader is installed, download the PDF file and open it in a reader. 
     * Otherwise ask the user if he/she wants to view it in the Google Drive online PDF reader.<br />
     * <br />
     * <b>BEWARE:</b> This method
     * @param context
     * @param pdfUrl
     * @return
     */
    public static void showPDFUrl( final Context context, final String pdfUrl ) {
        if ( isPDFSupported( context ) ) {
            downloadAndOpenPDF(context, pdfUrl);
        } else {
            askToOpenPDFThroughGoogleDrive( context, pdfUrl );
        }
    }

    /**
     * Downloads a PDF with the Android DownloadManager and opens it with an installed PDF reader app.
     * @param context
     * @param pdfUrl
     */
    @TargetApi(Build.VERSION_CODES.GINGERBREAD)
    public static void downloadAndOpenPDF(final Context context, final String pdfUrl) {
        // Get filename
        final String filename = pdfUrl.substring( pdfUrl.lastIndexOf( "/" ) + 1 );
        // The place where the downloaded PDF file will be put
        final File tempFile = new File( context.getExternalFilesDir( Environment.DIRECTORY_DOWNLOADS ), filename );
        if ( tempFile.exists() ) {
            // If we have downloaded the file before, just go ahead and show it.
            openPDF( context, Uri.fromFile( tempFile ) );
            return;
        }

        // Show progress dialog while downloading
        final ProgressDialog progress = ProgressDialog.show( context, context.getString( R.string.pdf_show_local_progress_title ), context.getString( R.string.pdf_show_local_progress_content ), true );

        // Create the download request
        DownloadManager.Request r = new DownloadManager.Request( Uri.parse( pdfUrl ) );
        r.setDestinationInExternalFilesDir( context, Environment.DIRECTORY_DOWNLOADS, filename );
        final DownloadManager dm = (DownloadManager) context.getSystemService( Context.DOWNLOAD_SERVICE );
        BroadcastReceiver onComplete = new BroadcastReceiver() {
            @Override
            public void onReceive(Context context, Intent intent) {
                if ( !progress.isShowing() ) {
                    return;
                }
                context.unregisterReceiver( this );

                progress.dismiss();
                long downloadId = intent.getLongExtra( DownloadManager.EXTRA_DOWNLOAD_ID, -1 );
                Cursor c = dm.query( new DownloadManager.Query().setFilterById( downloadId ) );

                if ( c.moveToFirst() ) {
                    int status = c.getInt( c.getColumnIndex( DownloadManager.COLUMN_STATUS ) );
                    if ( status == DownloadManager.STATUS_SUCCESSFUL ) {
                        openPDF( context, Uri.fromFile( tempFile ) );
                    }
                }
                c.close();
            }
        };
        context.registerReceiver( onComplete, new IntentFilter( DownloadManager.ACTION_DOWNLOAD_COMPLETE ) );

        // Enqueue the request
        dm.enqueue( r );
    }

    /**
     * Show a dialog asking the user if he wants to open the PDF through Google Drive
     * @param context
     * @param pdfUrl
     */
    public static void askToOpenPDFThroughGoogleDrive( final Context context, final String pdfUrl ) {
        new AlertDialog.Builder( context )
            .setTitle( R.string.pdf_show_online_dialog_title )
            .setMessage( R.string.pdf_show_online_dialog_question )
            .setNegativeButton( R.string.pdf_show_online_dialog_button_no, null )
            .setPositiveButton( R.string.pdf_show_online_dialog_button_yes, new OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog, int which) {
                    openPDFThroughGoogleDrive(context, pdfUrl); 
                }
            })
            .show();
    }

    /**
     * Launches a browser to view the PDF through Google Drive
     * @param context
     * @param pdfUrl
     */
    public static void openPDFThroughGoogleDrive(final Context context, final String pdfUrl) {
        Intent i = new Intent( Intent.ACTION_VIEW );
        i.setDataAndType(Uri.parse(GOOGLE_DRIVE_PDF_READER_PREFIX + pdfUrl ), HTML_MIME_TYPE );
        context.startActivity( i );
    }
    /**
     * Open a local PDF file with an installed reader
     * @param context
     * @param localUri
     */
    public static final void openPDF(Context context, Uri localUri ) {
        Intent i = new Intent( Intent.ACTION_VIEW );
        i.setDataAndType( localUri, PDF_MIME_TYPE );
        context.startActivity( i );
    }
    /**
     * Checks if any apps are installed that supports reading of PDF files.
     * @param context
     * @return
     */
    public static boolean isPDFSupported( Context context ) {
        Intent i = new Intent( Intent.ACTION_VIEW );
        final File tempFile = new File( context.getExternalFilesDir( Environment.DIRECTORY_DOWNLOADS ), "test.pdf" );
        i.setDataAndType( Uri.fromFile( tempFile ), PDF_MIME_TYPE );
        return context.getPackageManager().queryIntentActivities( i, PackageManager.MATCH_DEFAULT_ONLY ).size() > 0;
    }

}
share|improve this answer

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.

share|improve this answer
1  
vudroid=GPLv3, boo. – Jeffrey Blattman Oct 17 '12 at 21:59

protected by ho1 Jun 7 '12 at 7:54

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.