Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 711 Bytes

README_5.md

File metadata and controls

30 lines (21 loc) · 711 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 SingleDatePickerDialog(getSupportFragmentManager())
    .setDialogScreen(DateScreenStyle.FullScreen)
    ...
    .show();

FullCode