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
setDefaultTime
/** * `setDefaultTime` 显示错误 * 正确的应该为12:30:00, 但是默认显示的是12:50:00 * * 复现条件: * 1. setDefaultTime 和 setMinTime 同时大于当前时间 * 2. setDefaultTime - setMinTime 小于一小时 */ CardDatePickerDialog.builder(this) .setTitle("Error Time") .setDisplayType(DateTimeConfig.HOUR, DateTimeConfig.MIN, DateTimeConfig.SECOND) .setBackGroundModel(CardDatePickerDialog.CARD) .showBackNow(false) .setWrapSelectorWheel(false) .showFocusDateInfo(false) // 1640925000000 = UTC+8 2021-12-31 12:30:00.000 .setDefaultTime(1640925000000) // 1640922000000 = UTC+8 2021-12-31 11:20:00.000 .setMinTime(1640922000000) .build().show()
The text was updated successfully, but these errors were encountered:
fix #40,#39,#37
bf9b18c
优化选择周功能
No branches or pull requests
The text was updated successfully, but these errors were encountered: