Android中如何实现后台任务

发布于 2024-11-28 14:03:38 字数 389 浏览 0 评论 0原文

在我的应用程序中,基本上我需要在后台执行两项任务。一种是与 php 服务器同步一些数据,定期发送值并用答案更新本地数据库,另一种是从服务器下载主线程请求的文件,下载完成时通知 UI。

我只想在应用程序位于前台时执行这些操作。如果用户打开另一个应用程序,则完成当前事务并停止消耗资源。

此时我对如何实现它有点迷失。我从未使用过服务,我真的不知道服务是否是有效的解决方案,因为当您希望应用程序进入后台时代码仍然运行时,就会使用该服务。

我想到的其他解决方案是实现某种处理程序,定期(例如 20 分钟)启动一个线程以与服务器同步。当请求下载时也会启动线程并在最后发送广播。

那个解决方案怎么样?有效吗?如果是,我如何检测应用程序(不是活动)何时停止在前台运行以取消处理程序的帖子?

提前致谢

In my application I need, basically, two tasks performed in the background. One is sync some data with a php server, sending values and updating the local database with the answer periodically and the other is download files requested by the main thread from the server,notifying the UI when the download finish.

I only want do those things while the app is in foreground. And if the users opens another app, finish the current transactions and stop consuming resources.

At this point I'm a little lost about how to implement that. I have never used Services and I really dont know if a service is a valid solution, due to the service is used when you want your code still running when the app goes to background.

Other solution I've thought is to implement some kind of Handler that periodically (20 minutes for example) launches a thread for sync with the server. Lauching a thread also when a download is requested and sending a broadcast at the end.

What about that solution? Is valid? If yes, how can I detect when the app (not an activity) stops beeing at foreground in order to cancell the handler's posts?

Thanks in advance

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

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

发布评论

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

评论(1

溺深海 2024-12-05 14:03:38

如果您选择该服务,我建议您使用 IntentService http://developer.android .com/reference/android/app/IntentService.html

当您实现 onHandleIntent 时,您可以有一个循环,在唤醒它后等待您希望它休眠的时间可以执行你想要的任务。

@Override
protected void onHandleIntent(Intent intent) {
    while(true) {
        yourBackgroundTask();
        // Sleep
        try {
            wait(WAIT_TIME);
        } catch (Exception e) {
            Log.i(TAG, e.getMessage());
            break;
        }
    }
}

If you choose the service I recommend you to use an IntentService http://developer.android.com/reference/android/app/IntentService.html

When you implement onHandleIntent you can have a loop that waits for the amount of time you want it to sleep, after it wakes up it can perform the task that you want.

@Override
protected void onHandleIntent(Intent intent) {
    while(true) {
        yourBackgroundTask();
        // Sleep
        try {
            wait(WAIT_TIME);
        } catch (Exception e) {
            Log.i(TAG, e.getMessage());
            break;
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文