-
-
Notifications
You must be signed in to change notification settings - Fork 18
SimpleDateDialog
extends CustomViewDialog
| API reference | Examples |
|---|
A dialog providing a date picker.
See also SimpleTimeDialog
For general usage see SimpleDialog.
Additional methods are provided to set the initial date (date), allowed range (minDate and maxDate) etc.
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:
long dateMillis = extras.getLong(SimpleDateDialog.DATE);
SimpleDateDialog.build()
.date(1577833200000L)
.show(this, DIALOG_TAG); |
|
SimpleDateDialog.build()
.minDate(1578610800000L)
.maxDate(1579474800000L)
.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