Package com.netcetera.threeds.sdk.api.ui
Interface ProgressView
public interface ProgressView
Provides 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
Modifier and TypeMethodDescriptionvoidHides the progress view shown.booleanDeferments if the progress view is displayed or not.voidShows the progress full screen.
-
Method Details
-
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.
-