gpt4 book ai didi

android - setInterval 在 Android/Java 中等效?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:58:57 25 4
gpt4 key购买 nike

我希望能够运行以预定义的时间间隔检查远程服务器的服务。我将如何在 Android 中做这样的事情?示例:用户设置了一个选项,他们希望每 10 分钟检查一次更新,我该怎么做?

最佳答案

您可以为此使用处理程序,例如

Handler handler = new Handler();

private Runnable updateData = new Runnable(){
public void run(){
//call the service here
////// set the interval time here
handler.postDelayed(updateData,10000);
}
}

你可以在 postDelayed() 方法中设置用户自定义时间

这是链接

http://developer.android.com/reference/android/os/Handler.html

http://www.vogella.de/articles/AndroidPerformance/article.html

http://www.tutorialforandroid.com/2009/01/using-handler-in-android.html

http://www.satyakomatineni.com/akc/display?url=DisplayNoteIMPURL&reportId=3496

http://www.helloandroid.com/taxonomy/term/43

关于android - setInterval 在 Android/Java 中等效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7200190/

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