如何设置计时器的开始时间
我有一个带有计时器的应用程序,我需要将开始时间设置为日期之间的差异,
我该怎么做?
I have an application that has a chronometer, I need to set the start time to a difference between to dates
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是扩展 Chronometer 类...如下所示:
您可以使用 setMsElapsed(int ms) 来指定偏移量。您可能需要将日期转换为长型并从那里进行数学计算。如果指定类所在的整个包,则可以在 XML 布局中使用该类。
One way of doing this is to extends the Chronometer class... something like this:
You can use
setMsElapsed(int ms)
to specify your offset. You will probably have to convert your Dates to Long and do the math from there. The class can be used in XML layout if you specify the whole package where the class resides.