Some test text!

Search
Hamburger Icon

Xamarin / Android

Create pages (Android)

You can create pages using the add pages dialog or programmatically with Xamarin.Android

Add or create new document pages in Android

This tutorial only applies to Xamarin.Android.

The AddPageDialogFragment allows users are able to add new pages to an existing document or create a completely new document. The new pages created can have various types, sizes, and colors.

Create document

Add page dialog: dialog for creating new document (left), dialog for adding pages to an existing document (right).

Page properties

The following properties are available for creating or adding pages:

  • PageType The following types of page are supported in this dialog:

    • Blank: a page with nothing on it.
    • Lined: a page with horizontal lines on it.
    • Grid: a page with a superimposed grid on it.
    • Graph: a page with Cartesian axes on it.
    • Music: a page set up with modern staff notation for notating music.
  • PageSize The following page sizes are supported in this dialog: Custom, Letter, Legal, A4, A3, Ledger.

    The Custom option is only available when adding new pages to an existing PDF document, not when a new document is being created. The page size of Custom option is specified as here: add pages to an existing document
  • PageColor The page background can be set to the following colors: White, Yellow, and Blueprint.

Create a new PDF document

To create a new PDF document, call newInstance() and override the OnCreateNewDocumentListener interface. The implementation of onCreateNewDocument(PDFDoc, String) should create a new file with the given title normalized to a ".pdf" extension.

var addPageDialogFragment = AddPageDialogFragment.NewInstance();
addPageDialogFragment.CreateNewDocument += (sender, e) =>
{
    if (e.PdfDoc == null || e.Title == null)
    {
        return;
    }
    var title = e.Title;
    if (!title.EndsWith(".pdf", true, null))
    {
        title = title + ".pdf";
    }
    Java.IO.File folder = Android.OS.Environment.GetExternalStoragePublicDirectory(Android.OS.Environment.DirectoryDownloads);
    Java.IO.File documentFile = new Java.IO.File(folder, title);
    try
    {
        e.PdfDoc.Save(documentFile.AbsolutePath, (long)pdftron.SDF.SDFDoc.SaveOptions.e_remove_unused, null);
        Console.WriteLine("New file saved: " + documentFile.AbsolutePath);
    }
    catch (Exception ex)
    {
        Console.WriteLine(ex.Message);
    }
    finally
    {
        e.PdfDoc.Close();
    }

};
addPageDialogFragment.Show(this.SupportFragmentManager, "add_page_dialog");

Add pages to an existing document

To add pages to an existing PDF, create a new instance of the add page dialog fragment using newInstance(double, double) and provide the valid page width and page height arguments. These arguments will be used only if the user selects the Custom option in the Page Size dropdown. You also must implement the OnAddNewPagesListener interface and override onAddNewPages(Page[]), in which the implementation should add the provided pages to the document.

var addPageDialogFragment = AddPageDialogFragment.NewInstance(myPageWidth, myPageHeight);
addPageDialogFragment.AddNewPages += (sender, e) =>
{
    if (mPdfDoc == null || mPdfViewCtrl == null)
    {
        return;
    }
    bool shouldUnlock = false;
    try
    {
        mPdfViewCtrl.DocLock(true);
        shouldUnlock = true;

        for (int i = 1, cnt = e.Pages.Length; i <= cnt; i++)
        {
            int newPageNum = mPdfViewCtrl.CurrentPage + i;
            var pageNative = e.Pages[i - 1];
            var page = TypeConvertHelper.ConvPageToManaged(pageNative);
            mPdfDoc.PageInsert(mPdfDoc.GetPageIterator(newPageNum), page);
        }
    }
    catch (PDFNetException ex)
    {
        Console.WriteLine(ex.GetMessage());
    }
    finally
    {
        if (shouldUnlock)
        {
            mPdfViewCtrl.DocUnlock();
        }
    }
    mPdfViewCtrl.UpdatePageLayout();
    mPdfViewCtrl.CurrentPage = mPdfViewCtrl.CurrentPage + 1;
    if (mSeekBar != null)
    {
        mSeekBar.SetProgress(mPdfViewCtrl.CurrentPage);
    }
};
addPageDialogFragment.Show(this.SupportFragmentManager, "add_page_dialog");

Get the answers you need: Chat with us