PreferenceDialog 内的 Android TimePicker 将小时和分钟显示重置为 0,尽管值符合预期
我编写了一个自定义 PreferenceDialog,其中包括两个 TimePicker、一个 EditText、一些复选框和一个滚动视图父级。
一切正常,但当屏幕方向改变时,时间选择器重置为 0,而其他控件保留其状态。即使方向发生变化, getCurrentHour 和 getCurrentMinute 返回的值也是预期值。
如果您上下滚动,时间选择器最终将重新绘制并显示正确的数字。此外,如果您手动从 24 小时格式更改为 12 小时格式(反之亦然),时间选择器将显示正确的值。
有人知道发生了什么事吗?
I wrote a custom PreferenceDialog that includes two TimePickers, an EditText, a few CheckBoxes, and a scrollview parent.
Everything works fine, but when the screen orientation changes the timepickers reset to 0 while the other controls retain their state. The values returned by getCurrentHour and getCurrentMinute are the expected values even after the orientation change.
If you scroll up and down the timepickers will eventually redraw and display the correct numbers. Also, if you manually change from 24 hour format to 12 hour format (or vice versa) the timepickers will display the correct value.
Does anyone have an idea on what's going on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
终于想通了。如果您在 DialogPreference 中使用 TimePicker,您所要做的就是重写 showDialog 方法并在那里设置 currentHour 和 currentMinute。
像这样:
FINALLY figured it out. If you're using a TimePicker within a DialogPreference all you have to do is override the showDialog method and set the currentHour and currentMinute there.
Like this: