Please give a brief summary of your issue:
How can we disable/hide any annotation label like "View, Annotate,Draw,Insert,Pens etc. Like i want to hide only Pens and Insert label in android.
Please give a brief summary of your issue:
How can we disable/hide any annotation label like "View, Annotate,Draw,Insert,Pens etc. Like i want to hide only Pens and Insert label in android.
Hello, I’m Ron, an automated tech support bot
While you wait for one of our customer support representatives to get back to you, please check out some of these documentation pages:
Guides:APIs:Forums:Hi, you’ll need to only pass in your desired toolbar to the ViewerConfig.Builder.addToolbarBuilder, for example:
builder
.addToolbarBuilder(DefaultToolbars.defaultViewToolbar)
.addToolbarBuilder(DefaultToolbars.defaultAnnotateToolbar)
.addToolbarBuilder(DefaultToolbars.defaultDrawToolbar)
Thanks.