Some test text!
Xamarin / Android
You can create pages using the add pages dialog or programmatically with 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.
Add page dialog: dialog for creating new document (left), dialog for adding pages to an existing document (right).
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
.
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 documentPageColor
The page background can be set to the following colors: White
, Yellow
, and Blueprint
.
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");
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");
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales