PreferenceDialog 内的 Android TimePicker 将小时和分钟显示重置为 0,尽管值符合预期

发布于 2024-12-12 13:36:12 字数 286 浏览 3 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拒绝两难 2024-12-19 13:36:12

终于想通了。如果您在 DialogPreference 中使用 TimePicker,您所要做的就是重写 showDialog 方法并在那里设置 currentHour 和 currentMinute。

像这样:

@Override
protected void showDialog(Bundle state) {
    super.showDialog(state);

    mBeginShiftTp.setCurrentHour(mBeginShiftTp.getCurrentHour());
    mBeginShiftTp.setCurrentMinute(mBeginShiftTp.getCurrentMinute());
    mEndShiftTp.setCurrentHour(mEndShiftTp.getCurrentHour());
    mEndShiftTp.setCurrentMinute(mEndShiftTp.getCurrentMinute());
}

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:

@Override
protected void showDialog(Bundle state) {
    super.showDialog(state);

    mBeginShiftTp.setCurrentHour(mBeginShiftTp.getCurrentHour());
    mBeginShiftTp.setCurrentMinute(mBeginShiftTp.getCurrentMinute());
    mEndShiftTp.setCurrentHour(mEndShiftTp.getCurrentHour());
    mEndShiftTp.setCurrentMinute(mEndShiftTp.getCurrentMinute());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文