Skip to content

Files

Latest commit

0a0cd29 · Feb 15, 2021

History

History
29 lines (21 loc) · 707 Bytes

README_6.md

File metadata and controls

29 lines (21 loc) · 707 Bytes

SingleDatePickerDialog -> Customize

You can change UI with this configuration.

Screen Dialog

  • .setDialogScreen(DateScreenStyle.FullScreen)
    • Available Value :
      • DateScreenStyle.FullScreen
      • DateScreenStyle.Dialog

You can change from dialog to fullscreen with this code :

Code :

new MultiDataPickerDialog(getSupportFragmentManager())
    .setDialogScreen(DateScreenStyle.FullScreen)
    ...
    .show();

FullCode