How to create pdf in view pager Android?


Source link: https://github.com/voghDev/PdfViewPager

Here an example how to create pdf in view pager.

PdfViewPager

Download Android Arsenal Build Status

Android widget to display PDF documents in your Activities or Fragments.

Important note: PDFViewPager uses PdfRenderer class, which works only on API 21 or higher. See Official doc for details.

If you are targeting pre-Lollipop devices, have a look at the legacy sample

Installation

Add this line in your app/build.gradle

implementation  es.voghdev.pdfviewpager:library:1.1.2  

If you want to use the old android.support instead of androidx, add this dependency

implementation  es.voghdev.pdfviewpager:library:1.0.6  

Usage

Use PDFViewPager class to load PDF files from assets or SD card

Screenshot Screenshot

1.- Copy your assets to cache directory if your PDF is located on assets directory

CopyAsset copyAsset = new CopyAssetThreadImpl(context, new Handler());
 copyAsset.copy(asset, new File(getCacheDir(), "sample.pdf").getAbsolutePath());
 

2a.- Create your PDFViewPager passing your PDF file, located in assets (see sample)

pdfViewPager = new PDFViewPager(this, "sample.pdf");
 

2b.- Or directly, declare it on your XML layout

<es.voghdev.pdfviewpager.library.PDFViewPager
  android:id="@+id/pdfViewPager"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  app:assetFileName="sample.pdf"/> 

It will automatically have zooming and panning capability

3.- Release adapter in onDestroy

@Override protected void onDestroy() {

  super.onDestroy();

((PDFPagerAdapter) pdfViewPager.getAdapter()).close();
 
}
 

PDF s on SD card

1.- Create a PDFViewPager object, passing the file location in your SD card

PDFViewPager pdfViewPager = new PDFViewPager(context, getPdfPathOnSDCard());
  protected String getPdfPathOnSDCard() {

  File f = new File(getExternalFilesDir("pdf"), "adobe.pdf");

  return f.getAbsolutePath();
 
}
 

2.- Don t forget to release the adapter in onDestroy


 @Override
  protected void onDestroy() {

super.onDestroy();

 ((PDFPagerAdapter) pdfViewPager.getAdapter()).close();

  
}
 

Remote PDF s from a URL

Screenshot

1.- Add INTERNET, READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE permissions on your AndroidManifest.xml

<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> 

2.- Make your Activity or Fragment implement DownloadFile.Listener

public class RemotePDFActivity extends AppCompatActivity implements DownloadFile.Listener {
 

3.- Create a RemotePDFViewPager object

String url = "http://www.cals.uidaho.edu/edComm/curricula/CustRel_curriculum/content/sample.pdf";  RemotePDFViewPager remotePDFViewPager =

 new RemotePDFViewPager(context, url, this);
 

4.- Configure the corresponding callbacks and they will be called on each situation.

@Override public void onSuccess(String url, String destinationPath) {

  // That s the positive case. PDF Download went fine

adapter = new PDFPagerAdapter(this, "AdobeXMLFormsSamples.pdf");

  remotePDFViewPager.setAdapter(adapter);

  setContentView(remotePDFViewPager);
 
}
  @Override public void onFailure(Exception e) {

  // This will be called if download fails 
}
  @Override public void onProgressUpdate(int progress, int total) {

  // You will get download progress here
  // Always on UI Thread so feel free to update your views here 
}
 

5.- Don t forget to close adapter in onDestroy to release all resources

@Override protected void onDestroy() {

  super.onDestroy();

adapter.close();
 
}
 

Usage in Kotlin

As you might figure out, the library is fully usable in Kotlin programming language. You can find example code here.

Just import the library as a gradle dependency as you would do in Java.

TODOs

  • Make initial Pdf scale setable by code (requested by various users on issues)
  • Load PDF documents from SD card
  • Make PDF documents zoomable with pinch and double tap (two approaches, ImageViewZoom and photoview)
  • Unify all features in only one PDFViewPager and PDFPagerAdapter class
  • Support API Levels under 21, by downloading PDF and invoking system native intent.
  • UI tests
  • Add checkstyle, refactor & improve code quality

See changelog for details

Developed By

Follow me on Twitter Find me on Linkedin

Support

This repository has been supported by JetBrains with free licenses for all JetBrains products

License

Copyright 2016 Olmo Gallegos Hernández  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Contributing

For noobs (like me some months ago)

fork the project into your GitHub account now clone your GitHub repo for this project implement your changes commit your changes, push them into your repo review your code and send me a pull request if you consider it 

For not-so-noobs

Please make sure that your changes pass both checkstyle and UI tests before submitting them

./gradlew checkstyle  ./gradlew test 

And with your Android device connected

./gradlew connectedCheck 

Resources

Like Button is a library that allows you to create a button with animation effects similar to Twitter's heart when you like something.

Send Button Custom View for chatting application. The custom view developed by drawing path over the coordinates of the figure. And the animation done by continuously changing the coordinates in one direction.

Base skeleton structure to start every new project, based on the design patters suggested by Robert C. Martin (aka Uncle Bob) on his clean architecture.

A simple FastScroller for Android's RecyclerView.

Supports vertical RecyclerViews using either LinearLayoutManager or GridLayoutManager (including multiple spans).

Easy to use Android Reacive Bluetooth library for communicating with microcontrollers. Tiny and simple.

SublimeNavigationView is a complete rewrite of NavigationView (from Design Support library) that enables usage of Checkboxes, Switches & Badges in/as menu items.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes