Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Page Properties
hiddentrue

Status

Status
colourYellowGreen
titlefor reviewapproved

Approver

Alpar Szotyori (Unlicensed)

Here, you can read about the customization of the no-results screen.

Table of Contents
minLevel2
maxLevel4

...

UI

...

customisation

Figma for confluence lite
nodeUrlhttps://www.figma.com/filedesign/zyN1EkRlqN4QyXLBIFn8orja8DolAP66ZHWv4uNqOzYT/Android-Gini-Capture-SDK-3.211.10-UI-Customisation?type=design&node-id=10-2540&mode=design&t=wJHgOIBOxUGh76PBciaeYQ5eZQ0uioyp-41
height1000px

Bottom navigation bar

In order to inject your own view for the bottom navigation bar, pass your custom NoResultsNavigationBarBottomAdapter implementation to GiniCapture.Builder:

Code Block
languagekotlin
NoResultsNavigationBarBottomAdapter customNoResultsNavigationBarBottomAdapter = new CustomNoResultsNavigationBarBottomAdapter();

GiniCapture.newInstance()
        .setNoResultsNavigationBarBottomAdapter(customNoResultsNavigationBarBottomAdapter)
        .build();

Custom Help Screens

In order to show your own help screens, appended to the list on the main help screen, pass the title and activity for each screen to the GiniCapture.Builder using a list of HelpItem.Custom objects:

...