We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.setDate(selectedDate) //导致条件进入下面方法块 .setRangDate(startDate, endDate)//导致startDay不等于1
原因在WheelTime352行左右
// 判断大小月及是否闰年,用来确定"日"的数据 if (list_big.contains(String.valueOf(month + 1))) { wv_day.setAdapter(new NumericWheelAdapter(1, 31)); } else if (list_little.contains(String.valueOf(month + 1))) { wv_day.setAdapter(new NumericWheelAdapter(1, 30)); } else { // 闰年 29,平年 28 wv_day.setAdapter(new NumericWheelAdapter(startDay, leapYear ? 29 : 28)); }
new NumericWheelAdapter(startDay, leapYear ? 29 : 28)应该写成 new NumericWheelAdapter(1, leapYear ? 29 : 28)
(>﹏<)
The text was updated successfully, but these errors were encountered:
我也遇到了
Sorry, something went wrong.
2023-02-03,在这个时间点这个问题还是存在的
2023-02-06 也是有这个问题
作者不更新了,问题当然一直还存在,自己下载源码依赖或者自己重新打aar解决,我之前是下载仓库按上述方式打了aar解决。
No branches or pull requests
.setDate(selectedDate) //导致条件进入下面方法块
.setRangDate(startDate, endDate)//导致startDay不等于1
原因在WheelTime352行左右
new NumericWheelAdapter(startDay, leapYear ? 29 : 28)应该写成
new NumericWheelAdapter(1, leapYear ? 29 : 28)
(>﹏<)
The text was updated successfully, but these errors were encountered: