android handler.postAtTime 和 handler.postDelayed 之间的区别

发布于 2024-12-07 06:56:18 字数 117 浏览 0 评论 0原文

请告诉我android中handler.postAtTime和handler.postDelayed之间的区别。并且请指导我何时使用handler.postAtTime以及何时使用handler.postDelayed。

Please tell me the difference between handler.postAtTime and handler.postDelayed in android.And also please guide me when to use handler.postAtTime and when to use handler.postDelayed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

温馨耳语 2024-12-14 06:56:18

来自文档:

对于 postAtTime

public final boolean postAtTime (Runnable r, long uptimeMillis)
<代码>...
uptimeMillis 回调应运行的绝对时间,使用 uptimeMillis() 时基。
<代码>...

对于 postDelayed

public final boolean postDelayed(Runnable r,长delayMillis)
<代码>...
delayMillis 执行 Runnable 之前的延迟(以毫秒为单位)。
<代码>...


如果仍然不清楚,postDelayed() 在当前时间 X 毫秒后运行某些内容。而 postAtTime() 在指定时间 XX:YY:ZZ.mmm 运行某些内容。

From documentation:

For postAtTime:

public final boolean postAtTime (Runnable r, long uptimeMillis)
...
uptimeMillis The absolute time at which the callback should run, using the uptimeMillis() time-base.
...

And for postDelayed:

public final boolean postDelayed (Runnable r, long delayMillis)
...
delayMillis The delay (in milliseconds) until the Runnable will be executed.
...


If this is still not clear, postDelayed() run something after X millisecond from current time. While postAtTime() runs something at specified time XX:YY:ZZ.mmm.

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