Here, you can read about the customization of the no-results screen.
...
UI
...
customisation
Figma for confluence lite |
---|
nodeUrl | https://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 |
---|
height | 1000px |
---|
|
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 |
---|
|
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:
...