gpt4 book ai didi

handler.postAtTime 和 handler.postDelayed 的区别

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:15:06 35 4
gpt4 key购买 nike

请告诉我 handler.postAtTime 和 handler.postDelayed 在 android 中的区别,也请指导我何时使用 handler.postAtTime 以及何时使用 handler.postDelayed。

最佳答案

来自文档:

对于postAtTime:

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

对于postDelayed:

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


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

关于handler.postAtTime 和 handler.postDelayed 的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7593206/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com