-
- All Implemented Interfaces:
-
net.gini.android.capture.view.InjectedViewAdapter
public interface ReviewNavigationBarBottomAdapter implements InjectedViewAdapter
Adapter for injecting a custom bottom navigation bar on the review screen.
-
-
Method Summary
Modifier and Type Method Description abstract UnitsetOnContinueButtonClickListener(View.OnClickListener clickListener)Set the click listener for the continue button. abstract UnitsetOnAddPageButtonClickListener(View.OnClickListener clickListener)Set the click listener for the "add page" button. abstract UnitsetAddPageButtonVisibility(Integer visibility)Set "add page" button visibility. abstract UnitsetContinueButtonEnabled(Boolean enabled)Set the enabled state of the continue button. abstract UnitshowLoadingIndicator()Called when the loading indicator needs to be shown. abstract UnithideLoadingIndicator()Called when the loading indicator needs to be hidden. -
-
Method Detail
-
setOnContinueButtonClickListener
abstract Unit setOnContinueButtonClickListener(View.OnClickListener clickListener)
Set the click listener for the continue button.
- Parameters:
clickListener- the click listener for the button
-
setOnAddPageButtonClickListener
abstract Unit setOnAddPageButtonClickListener(View.OnClickListener clickListener)
Set the click listener for the "add page" button.
- Parameters:
clickListener- the click listener for the button
-
setAddPageButtonVisibility
abstract Unit setAddPageButtonVisibility(Integer visibility)
Set "add page" button visibility.
- Parameters:
visibility- one of the view visibility values: View.VISIBLE, View.INVISIBLE, or View.GONE
-
setContinueButtonEnabled
abstract Unit setContinueButtonEnabled(Boolean enabled)
Set the enabled state of the continue button.
-
showLoadingIndicator
abstract Unit showLoadingIndicator()
Called when the loading indicator needs to be shown.
-
hideLoadingIndicator
abstract Unit hideLoadingIndicator()
Called when the loading indicator needs to be hidden.
-
-
-
-