Button bt = new Button( PDFViewCtrl.getContext());
bt.layout(100, 100, 200, 200);
PDFViewCtrl.addView(bt);
You can also add a background image to PDFViewCtrl and this is illustrated in Samples\PDFViewCtrlDemo\src\com\pdftron\pdfnet\demo\pdfviewctrl\PDFViewCtrlDemo.java
The sample code looks as follows:
/*
* if you want to set the background of PDFViewCtrl to a Drawable, you
* can first set its background to be transparent and then set the
* drawable.
*/
//mPDFView.setClientBackgroundColor(255, 255, 255, true);
//Drawable draw = ...
//mPDFView.setBackgroundDrawable(draw);