Package com.netcetera.threeds.sdk.api.ui
Interface ProgressView
-
public interface ProgressViewProvides an instance of Progress View (processing screen) that the 3DS Requestor App uses. The processing screen displays the Directory Server logo, and a graphical element to indicate that an activity is being processed.IMPORTANT NOTICE:
- Methods must be called on the main(UI) thread!
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhideProgress()Hides the progress view shown.booleanisProgressShown()Deferments if the progress view is displayed or not.voidshowProgress()Shows the progress full screen.
-
-
-
Method Detail
-
showProgress
void showProgress()
Shows the progress full screen.IMPORTANT NOTICE:
- Must be called on the main(UI) thread!
-
hideProgress
void hideProgress()
Hides the progress view shown.IMPORTANT NOTICE:
- Must be called on the main(UI) thread!
-
isProgressShown
boolean isProgressShown()
Deferments if the progress view is displayed or not.IMPORTANT NOTICE:
- Must be called on the main(UI) thread!
- Returns:
- true if progress view is shown.
-
-