-
-
Notifications
You must be signed in to change notification settings - Fork 18
SimplePinDialog
Philipp Niedermayer edited this page Aug 7, 2022
·
1 revision
extends CustomViewDialog
API reference | Examples |
---|
A dialog asking for a pin.
For general usage see SimpleDialog.
Additional methods are provided to set the length (length
) or expected pin to validate (pin
).
Please refer to the API reference for a comprehensive documentation of these methods.
For general usage see SimpleDialog.
The extras
Bundle returned will contain the following additional keys:
String pin = extras.getString(SimplePinDialog.PIN);
SimplePinDialog.build()
.length(4)
.show(this, DIALOG_TAG); |
|
SimplePinDialog.build()
.pin("123456")
.show(this, DIALOG_TAG); |
Javadoc API
Screenshot gallery
Styling dialogs with themes
Fullscreen dialogs
SimpleDialog
CustomViewDialog
CustomListDialog
SimpleCheckDialog
SimpleColorDialog
SimpleColorWheelDialog
SimpleDateDialog
SimpleEMailDialog
SimpleFormDialog
SimpleImageDialog
SimpleInputDialog
SimpleListDialog
SimplePinDialog
SimpleProgressDialog
SimpleTimeDialog