You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.
The crash was caused when today's label was set using todayText() method. The WheelDayPicker was considering the label from resources for today position instead of the custom set label.
Akhunzaada
added a commit
to Akhunzaada/SingleDateAndTimePicker
that referenced
this issue
Jul 12, 2018
The crash was caused when today's label was set using todayText() method or from xml. The WheelDayPicker was considering the label from resources for today position instead of the custom set label.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
this is my implementation
private void showDatePickerDialog() { long date = (System.currentTimeMillis()-1000)+(1000*60*60*24*30); new SingleDateAndTimePickerDialog.Builder(this) .bottomSheet() .minutesStep(15) .displayHours(true) .displayMinutes(true) .maxDateRange(new Date(date)) .todayText("today") .mustBeOnFuture() .title("Simple") .listener(new SingleDateAndTimePickerDialog.Listener() { @Override public void onDateSelected(Date date) { Log.d("TAG", "onDateSelected: "+date.getTime()); } }).display(); }
The text was updated successfully, but these errors were encountered: