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)

Table of Contents
minLevel2
maxLevel7

UI customization

Figma for confluence lite
nodeUrl
https://www.figma.com/file/zyN1EkRlqN4QyXLBIFn8or/Android-Gini-Capture-SDK-3.2.1-UI-Customisation?type=design&node-id=9-4645&mode=design&t=wJHgOIBOxUGh76PB-4
height1000px

...

Bottom navigation bar

You can inject your own view for the bottom navigation bar by passing your custom HelpNavigationBarBottomAdapter implementation to GiniCapture.Builder:

...

Code Block
languagejava
List<HelpItem.Custom> customHelpItems = new ArrayList<>();

customHelpItems.add(new HelpItem.Custom(R.string.custom_help_screen_title,
        new Intent((Context) this, CustomHelpActivity.class)));

GiniCapture.newInstance()
        .setCustomHelpItems(customHelpItems)
        .build();

...

UI customisation

Figma for confluence lite
nodeUrlhttps://www.figma.com/design/ja8DolAP66ZHWv4uNqOzYT/Android-Gini-Capture-SDK-3.11.0-UI-Customisation?node-id=9-4645&t=ciaeYQ5eZQ0uioyp-1
height1000px

...