为什么使用服务执行后台任务很重要?
我知道我应该使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,服务用于长时间运行的任务,尤其是那些在您的 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 aThread
, created inside yourActivity
, can not live outside of the activity that's created it, when aService
can. Hope this helps.