SingleDateAndTimePicker
SingleDateAndTimePicker copied to clipboard
You can now select a date and a time with only one widget !
I'm only being able to get date and time in a string format eg: Tue Dec 28 16:55:00 GMT+05:30 2021 in onDateSelected method. Can anyone tell me how to get...
The weekday of the date is wrong if we look at the image below. `Tue 6 Dec` should be `Mon 6 Dec` as we can see the date of tomorrow...
JCenter is going away in 2022. Can the library be provided from another repository, please? Thank you for creating this library!
Code: `new DoubleDateAndTimePickerDialog.Builder(this) .bottomSheet() .curved() .title("Double") .tab0Text("Depart") .tab1Text("Return").display() ;` Error: `java.lang.NullPointerException: Attempt to invoke virtual method 'void com.github.florent37.singledateandtimepicker.SingleDateAndTimePicker.setTimeZone(java.util.TimeZone)' on a null object reference at com.github.florent37.singledateandtimepicker.dialog.DoubleDateAndTimePickerDialog.setTimeZone(DoubleDateAndTimePickerDialog.java:427) at com.github.florent37.singledateandtimepicker.dialog.DoubleDateAndTimePickerDialog.access$700(DoubleDateAndTimePickerDialog.java:30) at com.github.florent37.singledateandtimepicker.dialog.DoubleDateAndTimePickerDialog$Builder.build(DoubleDateAndTimePickerDialog.java:736) at...
Today's date is missing on the list when you make scroll it, today date appears immediately. This bug appears when setDefaultDate() is called, without setDefaultDate() it's working perfectly. When I...
For example, I want to show months/days, but I want to prevent editing(scrolling)
getHour and getHourOfDay both are using Calendar.HOUR. So when I set isAmPm is false afternoon, it always shows between 1 and 12.
Create a SingleDateAndTimePickerDialog like this: `new SingleDateAndTimePickerDialog.Builder(getActivity()) .bottomSheet() .displayMinutes(false) .displayHours(false) .displayDays(false) .displayMonth(true) .displayYears(true) .displayDaysOfMonth(true) .defaultDate(date)` You have to touch the days/years directly to perform the scroll, by touching next to...