Skip to end of banner
Go to start of banner

Help Screen

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Current »


Bottom navigation bar

You can inject your own view for the bottom navigation bar if you set GiniBank.setCaptureConfiguration(CaptureConfiguration(bottomNavigationBarEnabled = )) to true and pass a custom HelpNavigationBarBottomAdapter implementation to GiniBank:

let customHelpNavigationBarBottomAdapter:HelpNavigationBarBottomAdapter = CustomHelpNavigationBarBottomAdapter();

GiniBank.setCaptureConfiguration(
    CaptureConfiguration(
        helpNavigationBarBottomAdapter = customHelpNavigationBarBottomAdapter
    )
)

Custom help screens

You can show your own help screens and append them to the list on the main help screen. To do this, pass the title and activity for each screen to GiniBank using a list of HelpItem.Custom objects:

val customHelpItems: MutableList<HelpItem.Custom> = ArrayList()

customHelpItems.add(
    HelpItem.Custom(
        R.string.custom_help_screen_title,
        Intent(this, CustomHelpActivity::class.java)
    )
)

GiniBank.setCaptureConfiguration(
    CaptureConfiguration(
        customHelpItems = customHelpItems
    )
)

UI customisation

You can also view the UI customisation guide in Figma here.


  • No labels