Profile photo for Deepshikha Puri

Hello,

Download the source code from here (Display PDF file inside my android application).

Add this dependency in your gradle file:

  1. compile 'com.github.barteksc:android-pdf-viewer:2.0.3' 

activity_main.xml:

  1. <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffffff" xmlns:android="http://schemas.android.com/apk/res/android" > 
  2.  
  3. <TextView android:layout_width="match_parent" android:layout_height="40dp" android:background="@color/colorPrimaryDark" android:text="View PDF" android:textColor="#ffffff" android:id="@+id/tv_header" android:textSize="18dp" android:gravity="center"></TextView> 
  4.  
  5. <com.github.barteksc.pdfviewer.PDFView android:id="@+id/pdfView" android:layout_below="@+id/tv_header" android:layout_width="match_parent" android:layout_height="match_parent"/> 
  6.  
  7.  
  8. </RelativeLayout> 

MainActivity.java

  1. package pdfviewer.pdfviewer; 
  2.  
  3. import android.app.Activity; 
  4. import android.os.Bundle; 
  5. import android.util.Log; 
  6. import com.github.barteksc.pdfviewer.PDFView; 
  7. import com.github.barteksc.pdfviewer.listener.OnLoadCompleteListener; 
  8. import com.github.barteksc.pdfviewer.listener.OnPageChangeListener; 
  9. import com.github.barteksc.pdfviewer.scroll.DefaultScrollHandle; 
  10. import com.shockwave.pdfium.PdfDocument; 
  11.  
  12. import java.util.List; 
  13.  
  14. public class MainActivity extends Activity implements OnPageChangeListener,OnLoadCompleteListener{ 
  15. private static final String TAG = MainActivity.class.getSimpleName(); 
  16. public static final String SAMPLE_FILE = "android_tutorial.pdf"; 
  17. PDFView pdfView; 
  18. Integer pageNumber = 0; 
  19. String pdfFileName; 
  20.  
  21. @Override protected void onCreate(Bundle savedInstanceState) { 
  22. super.onCreate(savedInstanceState); 
  23. setContentView(R.layout.activity_main); 
  24.  
  25.  
  26. pdfView= (PDFView)findViewById(R.id.pdfView); 
  27. displayFromAsset(SAMPLE_FILE); 
  28. } 
  29.  
  30. private void displayFromAsset(String assetFileName) { 
  31. pdfFileName = assetFileName; 
  32.  
  33. pdfView.fromAsset(SAMPLE_FILE) 
  34. .defaultPage(pageNumber) 
  35. .enableSwipe(true) 
  36.  
  37. .swipeHorizontal(false) 
  38. .onPageChange(this) 
  39. .enableAnnotationRendering(true) 
  40. .onLoad(this) 
  41. .scrollHandle(new DefaultScrollHandle(this)) 
  42. .load(); 
  43. } 
  44.  
  45.  
  46. @Override public void onPageChanged(int page, int pageCount) { 
  47. pageNumber = page; 
  48. setTitle(String.format("%s %s / %s", pdfFileName, page + 1, pageCount)); 
  49. } 
  50.  
  51.  
  52. @Override public void loadComplete(int nbPages) { 
  53. PdfDocument.Meta meta = pdfView.getDocumentMeta(); 
  54. printBookmarksTree(pdfView.getTableOfContents(), "-"); 
  55.  
  56. } 
  57.  
  58. public void printBookmarksTree(List<PdfDocument.Bookmark> tree, String sep) { 
  59. for (PdfDocument.Bookmark b : tree) { 
  60.  
  61. Log.e(TAG, String.format("%s %s, p %d", sep, b.getTitle(), b.getPageIdx())); 
  62.  
  63. if (b.hasChildren()) { 
  64. printBookmarksTree(b.getChildren(), sep + "-"); 
  65. } 
  66. } 
  67. } 
  68.  
  69. } 
View 3 other answers to this question
About · Careers · Privacy · Terms · Contact · Languages · Your Ad Choices · Press ·
© Quora, Inc. 2025