📄
PDF Creator Android
  • Introduction
  • Docs
  • Installation
  • Getting Started
  • Available Views
    • PDFVerticalView
    • PDFHorizontalView
    • PDFTextView
    • PDFImageView
    • PDFLineSeparatorView
    • PDFPageBreakView
    • PDFTableView
      • PDFTableRowView
  • Generate Pdf From HTML
    • Html To Pdf
    • WebView To Pdf
Powered by GitBook
On this page
  1. Available Views

PDFPageBreakView

Content added after PDFPageBreakView will be added in new page in PDF.

Add PDFPageBreakView inside your PDFBody to break page and add next content to a new PDF page.

final PDFPageBreakView pdfPageBreakView = new PDFPageBreakView(getApplicationContext());
pdfBody.addView(pdfPageBreakView);

Take care when using PDFPageBreakView , It will break page wherever you add it. So make sure you add PDFPageBreakView directly inside of PDFBody

PreviousPDFLineSeparatorViewNextPDFTableView

Last updated 3 years ago