Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 699 Bytes

README_6.md

File metadata and controls

29 lines (21 loc) · 699 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