Some test text!
Android / Guides / Fill form fields
There are two options to fill form fields. First is using a UI component that can fill form fields. Second is an API guide to programmatically fill form fields.
Interactive form filling for form fields such as text fields, checkboxes, radio buttons, dropdowns, signatures, etc. is supported by the Apryse Android SDK.
You can disable form field editing altogether by configuring ToolManager
using the ToolManagerBuilder
and disabling the FORM_FILL
:
// Create a custom ToolManager with disabled form filling
ToolManager.ToolMode[] toolModes = {ToolManager.ToolMode.FORM_FILL};
ToolManagerBuilder tmBuilder = ToolManagerBuilder.from()
.disableToolModes(toolModes);
// Add ToolManagerBuilder to your ViewerConfig
ViewerConfig config = new ViewerConfig.Builder()
.fullscreenModeEnabled(true)
.multiTabEnabled(true)
// ...
.toolManagerBuilder(tmBuilder)
.build();
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales