/
Help Screen

Help Screen


Bottom navigation bar

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

HelpNavigationBarBottomAdapter customHelpNavigationBarBottomAdapter = new CustomHelpNavigationBarBottomAdapter(); GiniCapture.newInstance() .setHelpNavigationBarBottomAdapter(customHelpNavigationBarBottomAdapter) .build();

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 the GiniCapture.Builder using a list of HelpItem.Custom objects:

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


Related content

Overview of UI Customization Options
Overview of UI Customization Options
Read with this
Help Screen
More like this
QR Code Scanning Guide
QR Code Scanning Guide
Read with this
Help Screen
More like this
Help Screen
More like this