Pdf-Viewer

A Lightweight PDF Viewer Android library which only occupies around 80kb while most of the Pdf viewer occupies up to 16MB space.

View the Project on GitHub afreakyelf/Pdf-Viewer

Pdf Viewer For Android

A Simple PDF Viewer library which only occupies around 80kb while most of the Pdf viewer occupies upto 16MB space.

Maven Central License Visitors CodeFactor Discord

[New] Join our Discord Community here!

✨ Major Enhancements in Our PDF Viewer Library ✨

Hello Developers! We’re thrilled to share some significant enhancements we’ve made to our PDF viewer library. We’ve fine-tuned several aspects to enhance your experience and ensure top-notch performance and security. Here’s what’s new:

Stay tuned as we continue to innovate and improve. Happy coding, and let’s keep creating amazing experiences together!

How to integrate into your app? ⚙️

We have migrated our library to Maven Central for easier integration and better reliability. To use the Pdf Viewer library in your project, add the following dependency to your build.gradle file:

Latest version: without ‘v’

Groovy DSL

dependencies {
    // Replace 'latest-version' with the actual latest version number
    implementation 'io.github.afreakyelf:Pdf-Viewer:latest-version'
}

Kotlin DSL

dependencies {
    // Replace 'latest-version' with the actual latest version number
    implementation("io.github.afreakyelf:Pdf-Viewer:latest-version")
}

How to use the library?

Now you have integrated the library in your project but how do you use it? Well it’s really easy. Just launch the intent with in following way: (Refer to MainActivity.kt for more details.)

Prerequisites

Ensure the library is included in your project’s dependencies.

Launching PDF Viewer

Opening PDF from a URL

To display a PDF from a URL, use the following code:

/* Parameters:
- context: The context of your activity.
- pdfUrl: URL of the PDF to be displayed.
- pdfTitle: Title of the PDF document.
- saveTo: Determines how to handle saving the PDF (e.g., ASK_EVERYTIME prompts the user each time).
- enableDownload: Enables downloading of the PDF. */

PdfViewerActivity.launchPdfFromUrl(
    context = this,
    pdfUrl = "your_pdf_url_here",
    pdfTitle = "PDF Title",
    saveTo = PdfViewerActivity.saveTo.ASK_EVERYTIME,
    enableDownload = true
)

Opening PDF from Local Storage

To open a PDF stored in local storage:

/* Parameters:
- path: File path or URI of the local PDF.
- fromAssets: Set to false when loading from local storage. // FALSE by default
*/

PdfViewerActivity.launchPdfFromPath(
    context = this,
    path = "your_file_path_or_uri_here",
    pdfTitle = "Title",
    saveTo = PdfViewerActivity.saveTo.ASK_EVERYTIME,
    fromAssets = false
)

Opening PDF from Assets

To open a PDF from the app’s assets folder:

/* Parameters:
- path: File path or URI of the local PDF.
- fromAssets: Set to true when loading from assets.
*/

PdfViewerActivity.launchPdfFromPath(
  context = this,
  path = "file_name_in_assets",
  pdfTitle = "Title",
  saveTo = PdfViewerActivity.saveTo.ASK_EVERYTIME,
  fromAssets = true
)

Loading PDF in a View

Load a PDF directly into a view:

Add PDF render view in your layout file

<com.rajat.pdfviewer.PdfRendererView
    android:id="@+id/pdfView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:pdfView_divider="@drawable/pdf_viewer_divider"
    app:pdfView_showDivider="false" />

and in your kotlin file

binding.pdfView.initWithUrl(
  url = "your_pdf_url_here",
  lifecycleCoroutineScope = lifecycleScope,
  lifecycle = lifecycle
)

Using with Jetpack Compose

For Jetpack Compose, utilize PdfRendererViewCompose:

PdfRendererViewCompose(
    url = "your_pdf_url_here",
    lifecycleOwner = LocalLifecycleOwner.current
)

That’s pretty much it and you’re all wrapped up.

Ui Customizations

You need to add the custom theme to styles.xml/themes.xml file and override the required attribute values. Parent theme can be either Theme.PdfView.Light or Theme.PdfView.Dark or the one with no actionbar from the application. Note: If parent is not one of the themes from this library, all of the pdfView attributes should be added to that theme.

<style name="Theme.PdfView.SelectedTheme" parent="@style/Theme.PdfView.Light">
    <item name="pdfView_backIcon">@drawable/ic_arrow_back</item>
    <item name="pdfView_showToolbar">true</item>
    <item name="pdfView_disableScreenshots">true</item>
    ...
</style>

Ui Customizations - Page number

You need to add the custom layout to pdf_view_page_no.xml file and override the required attribute values.

<?xml version="1.0" encoding="utf-8"?>  
<TextView xmlns:android="http://schemas.android.com/apk/res/android"  
  android:id="@+id/pageNo"  
  android:layout_width="wrap_content"  
  android:layout_height="wrap_content"  
  android:layout_margin="18dp"  
  android:background="#9C27B0"  
  android:paddingStart="12dp"  
  android:paddingTop="4dp"  
  android:paddingEnd="12dp"  
  android:paddingBottom="4dp"  
  android:textColor="#ffffff"  
  android:textSize="16sp"  
  android:visibility="gone" />

Ui Page number

You need to add the custom string to strings.xml file and override the required strings.xml values.

Default:

<string name="pdfView_page_no">%1$s of %2$s</string>

Custom:

<string name="pdfView_page_no" >%1$s / %2$s</string>

Supported attributes

Attribute Name Type Expected changes
pdfView_backIcon drawable Navigation icon
pdfView_downloadIcon drawable Download icon
pdfView_downloadIconTint color Download icon tint
pdfView_actionBarTint color Actionbar background color
pdfView_titleTextStyle style Actionbar title text appearance
pdfView_progressBar style Progress bar style

Who’s using Pdf-Viewer?

👉 Check out who’s using Pdf-Viewer

Contributing

Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/NewFeature)
  3. Commit your Changes (git commit -m 'Add some NewFeature')
  4. Push to the Branch (git push origin feature/NewFeature)
  5. Open a Pull Request

Donations

If this library helps you save time during development, you can buy me a cup of coffee :)

paypal

Author

Maintained by Rajat Mittal