-
public interface Dialog.CallbacksDialog Callback, see setCallbacks
-
-
Method Summary
Modifier and Type Method Description abstract voidonDisplay(Dialog.ErrorMessage dialog)Call when an error message need to be displayed abstract voidonDisplay(Dialog.LoginDialog dialog)Called when a login dialog need to be displayedCall postLogin to post the answer, orcall dismiss to dismiss the dialog. abstract voidonDisplay(Dialog.QuestionDialog dialog)Called when a question dialog need to be displayedCall postAction to post the answer, orcall dismiss to dismiss the dialog. abstract voidonDisplay(Dialog.ProgressDialog dialog)Called when a progress dialog need to be displayedCall dismiss to dismiss the dialog (if it's cancelable). abstract voidonCanceled(Dialog dialog)Called when a previously displayed dialog need to be canceled abstract voidonProgressUpdate(Dialog.ProgressDialog dialog)Called when a progress dialog needs to be updatedDialog text and position may be updated, call getText and getPosition to get the updated information. -
-
Method Detail
-
onDisplay
@MainThread() abstract void onDisplay(Dialog.ErrorMessage dialog)
Call when an error message need to be displayed
- Parameters:
dialog- error dialog to be displayed
-
onDisplay
@MainThread() abstract void onDisplay(Dialog.LoginDialog dialog)
Called when a login dialog need to be displayedCall postLogin to post the answer, orcall dismiss to dismiss the dialog.
- Parameters:
dialog- login dialog to be displayed
-
onDisplay
@MainThread() abstract void onDisplay(Dialog.QuestionDialog dialog)
Called when a question dialog need to be displayedCall postAction to post the answer, orcall dismiss to dismiss the dialog.
- Parameters:
dialog- question dialog to be displayed
-
onDisplay
@MainThread() abstract void onDisplay(Dialog.ProgressDialog dialog)
Called when a progress dialog need to be displayedCall dismiss to dismiss the dialog (if it's cancelable).
- Parameters:
dialog- question dialog to be displayed
-
onCanceled
@MainThread() abstract void onCanceled(Dialog dialog)
Called when a previously displayed dialog need to be canceled
- Parameters:
dialog- dialog to be canceled
-
onProgressUpdate
@MainThread() abstract void onProgressUpdate(Dialog.ProgressDialog dialog)
Called when a progress dialog needs to be updatedDialog text and position may be updated, call getText and getPosition to get the updated information.
- Parameters:
dialog- dialog to be updated
-
-
-
-