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

android在handler.postAtTime和handler.postDelayed之间的区别,第1张

概述请告诉我在 android.And中handler.postAtTime和handler.postDelayed之间区别也请指导我何时使用handler.postAtTime以及何时使用handler.postDelayed. 从文档: 对于postAtTime: public final boolean postAtTime (Runnable r, long uptimeMillis) .. 请告诉我在 android.And中handler.postAtTime和handler.postDelayed之间的区别也请指导我何时使用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.
...

@H_502_24@

对于postDelayed:

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

@H_502_24@

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

总结

以上是内存溢出为你收集整理的android在handler.postAtTime和handler.postDelayed之间的区别全部内容,希望文章能够帮你解决android在handler.postAtTime和handler.postDelayed之间的区别所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1137847.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存