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.

Fill form fields in Android

Interactive form filling for form fields such as text fields, checkboxes, radio buttons, dropdowns, signatures, etc. is supported by the Apryse Android SDK.

Apryse Docs Image

Disable form filling

You can disable form field editing altogether by configuring ToolManager using the ToolManagerBuilder and disabling the FORM_FILL:

1// Create a custom ToolManager with disabled form filling
2ToolManager.ToolMode[] toolModes = {ToolManager.ToolMode.FORM_FILL};
3ToolManagerBuilder tmBuilder = ToolManagerBuilder.from()
4 .disableToolModes(toolModes);
5
6// Add ToolManagerBuilder to your ViewerConfig
7ViewerConfig config = new ViewerConfig.Builder()
8 .fullscreenModeEnabled(true)
9 .multiTabEnabled(true)
10 // ...
11 .toolManagerBuilder(tmBuilder)
12 .build();

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales