Some test text!

Search
Hamburger Icon

Xamarin / Android

Fill form fields (Android)

There are two options to fill form fields. First is using a UI component that can edit or create form fields. Second is an API guide to programmatically fill form fields.

Fill form fields UI in Android

This tutorial only applies to Xamarin.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 field creation
ToolManager.ToolMode[] toolModes = { ToolManager.ToolMode.FormFill };
var tmBuilder = ToolManagerBuilder.From()
    .DisableToolModes(toolModes);

// Add ToolManagerBuilder to your ViewerConfig
var config = new ViewerConfig.Builder()
    .FullscreenModeEnabled(true)
    .MultiTabEnabled(true)
    // ...
    .ToolManagerBuilder(tmBuilder)
    .Build();

Get the answers you need: Chat with us