Review Screen


UI customization


Bottom navigation bar

You can inject your own view for the bottom navigation bar if you set GiniCapture.newInstance().setBottomNavigationBarEnabled() to true and pass a custom CameraNavigationBarBottomAdapter implementation to GiniCapture.Builder:

ReviewNavigationBarBottomAdapter customReviewNavigationBarBottomAdapter = new CustomReviewNavigationBarBottomAdapter(); GiniCapture.newInstance() .setReviewBottomBarNavigationAdapter(customReviewNavigationBarBottomAdapter) .build();

Custom Process button loading indicator

There is a default loading indicator on the Process button that shows that the upload is in progress. You can show your own activity indicator by implementing the OnButtonLoadingIndicatorAdapter interface and passing it to GiniCapture:

OnButtonLoadingIndicatorAdapter customOnButtonLoadingIndicatorAdapter = new CustomOnButtonLoadingIndicatorAdapter(); GiniCapture.newInstance() .setOnButtonLoadingIndicatorAdapter(customOnButtonLoadingIndicatorAdapter) .build();

Â