InputDialog
class InputDialog
Class responsible for creating an input dialog box.
public class InputDialog
— Constructors (7) —
Name | Description |
---|---|
InputDialog(String tittle, InputDialogListener listener) | Creates a new instance of the InputDialog with title and InputDialogListener defined to be the arguments. |
InputDialog(String tittle, [Type] type, InputDialogListener listener) | Creates a new instance of the InputDialog with title, type, and InputDialogListener defined to be the arguments. |
InputDialog(String tittle, String defaultText, InputDialogListener listener) | Creates a new instance of the InputDialog with title, default text, and InputDialogListener defined to be the arguments. |
InputDialog(String tittle, String defaultText, [Type] type, InputDialogListener listener) | Creates a new instance of the InputDialog with title, default text, type, and InputDialogListener defined to be the arguments. |
InputDialog(String tittle, String cancelButton, String doneButton, InputDialogListener listener) | Creates a new InputDialog instance with title, cancel button, commit button, and InputDialogListener defined to be the arguments. |
InputDialog(String tittle, String defaultText, String cancelButton, String doneButton, InputDialogListener listener) | Creates a new InputDialog instance with title, default text, cancel button, commit button, and InputDialogListener defined to be the arguments. |
InputDialog(String tittle, String defaultText, String cancelButton, String doneButton, [Type] type, InputDialogListener listener) | Creates a new InputDialog instance with title, default text, cancel button, commit button, type, and InputDialogListener defined to be the arguments. |
— Enumerators (1) —
public enum Type{
String, Float, Int
}