It is possible to programmatically modify the quick menu by calling methods to add and remove items.
The following example will customize the quick menu for the Square tool by using the ShowQuickMenu event and adding a link button. Menu entries can be moved around and removed as well.
Add a menu entry to the ids.xml in Resources/values to identify it:
XML
1<resources>
2 ...
3
4 <item name="qm_custom_link" type="id" />
5
6 ...
7</resources>
Create event handler for the ShowQuickMenu event, and add the code below to create a new QuickMenuItem and specify the order you would like for it to show:
3 if (e.Annot != null && e.Annot.Type == (int) Annot.Type.e_Square)
4 {
5 QuickMenuItem item = new QuickMenuItem(this, Resource.Id.qm_custom_link,
6 QuickMenuItem.FirstRowMenu);
7 List<QuickMenuItem> items = new List<QuickMenuItem>(1);
8 items.Add(item);
9 e.Quickmenu.RemoveMenuEntries(items);
10 }
11 e.Handled = false;
12};
1if (annot.getType() == Annot.e_Square) {
2 QuickMenuItem item = new QuickMenuItem(MainActivity.this, R.id.qm_custom_link,
3 QuickMenuItem.FIRST_ROW_MENU);
4 ArrayList<QuickMenuItem> items = new ArrayList<>(1);
5 items.add(item);
6 quickMenu.removeMenuEntries(items);
7}
Override menu resources
In this tutorial you will customize the quick menu for the Pan tool by overriding the default menu resource XML file in the Apryse SDK.
Create a menu resource XML file called pan.xml in your project's Resources/menu folder. This pan.xml file will automatically be used instead of the default one in the tools package. To override other quick menus, refer to the table below to determine the name of the menu resource file.
Add two items to you menu in pan.xml with the id attributes @+id/qm_free_text and @+id/qm_floating_sig:Here we use the ids @+id/qm_free_text and @+id/qm_floating_sig to override the Free Text and Signature menu items.Now, when you long-press on a blank space, you will see:
You can also create your own menu items by providing a unique id, or by overriding our other menu items using the menu ids defined in the tools package. You can learn more about handling custom menu item click events.
Quick menu resources
pan
Pan
Long press on blank space
text_select
TextSelect
Long press on text
annot_simple_shape
AnnotEdit
Single tap on Square, Circle, Line, Polygon, Polyline, Text
annot_free_text
AnnotEdit
Single tap on FreeText
annot_link
AnnotEdit
Single tap on Link
annot_signature
AnnotEdit
Single tap on signature (type: Annot.e_Stamp and custom field: Signature.SIGNATURE_ANNOTATION_ID)
annot_stamper
AnnotEdit
Single tap on Stamp(type: Annot.e_Stamp)
annot_file_attachment
AnnotEdit
Single tap on FileAttachment
annot_free_hand
AnnotEdit
Single tap on Ink
annot_general
AnnotEdit
Single tap on all other annotation types
annot_edit_text_markup
AnnotEditTextMarkup
Single tap on TextMarkup annotations
type
AnnotEditTextMarkup
Click quick menu item with id R.id.type
sig_field_image
DigitalSignature
Single tap on digital image signature
annot_edit_thickness
DigitalSignature
Click quick menu item with id R.id.thickness
sig_field_paths
DigitalSignature
Single tap on digital signature, or click on items in quick menu R.menu.annot_edit_thickness
Create your own quick menu
You can use quick menus in a ToolManager as well as in your application logic directly. By the end of this tutorial, you will be able to create your own quick menu.
First, add a menu resource XML file in your project's Resources/menu folder. For example, let's create a file called custom.xml.
By default, all menu items are placed in the first row of the quick menu. If you want to specify the location of a menu item, enclose the item inside a group with a group id from this list:
Group id
Location in quick menu
@id/qm_first_row_group
First row group id: all menu items inside this group will be displayed in the first row of the quick menu.
@id/qm_second_row_group
Second row group id: all menu items inside this group will be displayed in the second row of the quick menu.
@id/qm_overflow_row_group
Overflow list group id: all menu items inside this group will be displayed in the overflow menu list of the quick menu.
You can also add a sub menu by specifiying it in the menu resource XML. For example, we can add an Oval menu item as a submenu under the Rectangle menu item by changing custom.xml to:
2 QuickMenu quickMenu = new QuickMenu(pdfViewCtrl);
3 quickMenu.initMenuEntries(R.menu.custom);
4 }
Alternatively, if you want to customize menu items manually you can call QuickMenu.Inflate to prevent auto-initialization. Then after customizing the items, call QuickMenu.initMenuEntries to apply your changes:
1 void InitQuickMenu(PDFViewCtrl pdfViewCtrl) {
2 var quickMenu = new QuickMenu(pdfViewCtrl);
3 quickMenu.Inflate(Resource.Menu.custom);
4 var quickMenuItem = (QuickMenuItem) quickMenu.Menu.FindItem(Resource.Id.rectangle);
1 private fun showQuickMenu(quickMenu: QuickMenu, view: View) {
2 quickMenu.setAnchor(view)
3 quickMenu.show()
4 }
The quick menu will automatically adjust its position to either the top or bottom of the anchor view, depending on the space available:
At this point, you should see the following when the quick menu is shown:
Without sub menu:
With sub menu:
Click events
Click events from your custom items will not be automatically handled by the Apryse SDK if the menu item id does not match any of the default ids defined in the tools package (located in the PDFViewCtrlTools\res\menu\ids.xml file). You will have to handle these events as described in this guide or by implementing DismissEvent:
1quickMenu.DismissEvent += (sender, e) =>
2{
3 // Get selected quick menu item
4 var selectedMenuItem = quickMenu.SelectedMenuItem;
5 // Provide functionality depending on the menu item selected