在 Android 中设置 > 24 小时倒计时器的最佳方法?
我是一名 Android 新手,最近完成了我的第一个应用程序,其中用户可以设置一个时间(最多 24 小时)作为倒计时,然后根据当前经过的时间执行一些节奏计算。该应用程序基于 CountDownTimer 和 TimePickerDialog 类,并基于本网站和其他网站的示例(感谢所有人)。
这是我的问题:有人问我是否可以将倒计时器延长至 84 小时(对于长途骑行者)。 TimePickerDialog 真的很容易使用 - 有没有一种简单的方法来“扩展”类以允许选择最多 84 小时?或者我应该放弃自己去处理我自己的自定义小部件?
I am an Android newbie and recently completed my first app, in which users can set a time, up to 24 hours, to countdown from, and then, as they go, perform some pacing calculations based on the current elapsed time. The app is based on the CountDownTimer and TimePickerDialog classes, and is based the examples from this site and others (thanks to all).
Here is my problem: I've been asked if I can extend the countdown timer to 84 hours (for long distance cyclists). The TimePickerDialog was really easy to use - is there a straightforward way to "extend" the class to allow selection of up to 84 hours? Or should I just resign myself to tackling my own custom widget?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TimePicker 最多只能选择 24 小时。您必须制作自己的自定义小部件。
TimePicker only allows selection up to 24 hours. You will have to make your own custom widget.