...
UI customization
Figma for confluence lite |
---|
nodeUrl | https://www.figma.com/file/90w06Fxp3zz6CiZ7gpjloW/Android-Gini-Capture-SDK-3.6.0-UI-Customisation?type=design&node-id=9-4645&mode=design&t=fHM8xWT1rG5JXBct-0 |
---|
height | 1000px |
---|
|
...
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 |
---|
|
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 customization
Figma for confluence lite |
---|
nodeUrl | https://www.figma.com/file/90w06Fxp3zz6CiZ7gpjloW/Android-Gini-Capture-SDK-3.6.0-UI-Customisation?type=design&node-id=9-4645&mode=design&t=fHM8xWT1rG5JXBct-0 |
---|
height | 1000px |
---|
|
...