Frameworks
React Native
Flutter
Package samples
Cookbook
Version 11
Version 10
Version 9
Version 8
Version 7
Version 6
Version 5
CustomRelativeLayout
is a RelativeLayout
that can be nested under PDFViewCtrl
with a given page position and page number. All child views of CustomRelativeLayout
are displayed on top of PDFViewCtrl
. When PDFViewCtrl
is scrolling or zooming, CustomRelativeLayout
will adjust position and size automatically according to the app:zoomWithParent
attribute.
The position of CustomRelativeLayout
is calculated in PDF page coordinates. In page coordinate, the origin location (0, 0) is at the bottom left corner of the PDF page. The x axis extends horizontally to the right and y axis extends vertically upward. For more information, see: understanding coordinates
You can add CustomRelativeLayout
as a child view of PDFViewCtrl
in your XML layout resource file:
Alternatively, you can also add CustomRelativeLayout
from separate layout file. Here is an example where the CustomRelativeLayout
is inflated and added directly to PDFViewCtrl
.
CustomRelativeLayout
. For example, our layout file R.layout.custom_layout_textview
shown below contains a CustomRelativeLayout
with two child views:2. Then you can inflate the layout and add it directly to PDFViewCtrl
:
If you delete the page defined in CustomRelativeLayout
, the CustomRelativeLayout
will not be removed from PDFViewCtrl
. Please remember to remove CustomRelativeLayout
manually.
You can also add the custom layout programmatically. The code below uses CustomRelativeLayout
constructor to create a custom layout equivalent to previous examples:
CustomRelativeLayout
allows child views to be displayed inside PDFViewCtrl
. XML attributes for positioning CustomRelativeLayout
in PDFViewCtrl
are defined in the table below:
Attribute | Description |
---|---|
| Specifies the x-coordinate in PDF page coordinates . |
| Specifies the y-coordinate in PDF page coordinates . |
| Specifies the page number of the document that will contain this |
| Specifies whether the |
| Specifies the width of the view, it must be a positive integer in PDF page coordinates . |
| Specifies the height of the view, it must be a positive integer in PDF page coordinates . |
Did you find this helpful?
Trial setup questions?
Ask experts on DiscordNeed other help?
Contact SupportPricing or product questions?
Contact Sales