Android Customization
Customize Language
It is possible to configure the experience of the informational messages in the capture frames by changing their language. Use the enumerated type LocaleTypes, which contains the following values:
LocaleTypes.PT_BR: for Portuguese(Brazil);LocaleTypes.ES_MX: for Spanish(Mexico);LocaleTypes.ES_ES: for Spanish(Spain);LocaleTypes.EN_US: for English(USA).
See how to implement it in the example below:
unicoCheck.setLocale(LocaleTypes.EN_US);unicoCheck.setLocale(LocaleTypes.EN_US);Customize Capture Process Experience
Customize Selfie Capture Experience
This is an optional step, but highly recommended so that the capture process reflects your company's visual identity.
It is possible to customize some objects of the frame according to the camera mode used, through the setTheme() method.
The supported types for color representation are Color Resource or String containing the hexadecimal color code. Example: R.color.red or #FF0000.
All methods are available below:
It is also possible to make static customizations. In your colors.xml file, add the following code:
Customize Document Capture Experience
This is an optional step, but highly recommended so that the capture process reflects your company's visual identity.
It is possible to customize some objects of the frame according to the camera mode used, through the setTheme() method.
The supported types for color representation are Color Resource or String containing the hexadecimal color code. For example: R.color.red or #FF0000.
All methods are available below:
It is also possible to make static customizations. In your colors.xml file, add the following code:
Last updated
Was this helpful?