Some test text!

Search
Hamburger Icon

Android / Guides / Fill form fields

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.

Form Filling

Disable form filling

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();

Get the answers you need: Chat with us