为什么使用服务执行后台任务很重要?

发布于 2024-12-09 22:36:12 字数 121 浏览 2 评论 0原文

我知道我应该使用 Android 中的服务从非 UI 线程在后台执行操作。

但是,我想知道仅生成后台线程来从 Activity 类(例如在 onClick 事件内)执行工作有什么问题。

提前致谢。

I know I should use Services in Android to do stuff in the background from a non-UI thread.

However, I would like to know what is wrong with just spawning a background thread to do the work from an Activity class (within an onClick event for example).

Thanks in advance.

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

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

发布评论

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

评论(1

℉絮湮 2024-12-16 22:36:12

实际上,服务用于长时间运行的任务,尤其是那些在您的 Activity 未运行时运行的任务。 Threads 可用于在您的活动中执行一些任务。这表明,在 Activity 内部创建的Thread 不能存在于创建它的 Activity 之外,而 Service 可以。希望这有帮助。

Actually, Services are used for long running tasks, especially those, that run when your activity is not running. Threads can be used for making some tasks inside your activity. This states, that a Thread, created inside your Activity, can not live outside of the activity that's created it, when a Service can. Hope this helps.

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