美文网首页
Android中的特殊线程——IntentService

Android中的特殊线程——IntentService

作者: Samuel_Tom | 来源:发表于2018-09-03 01:32 被阅读0次

    IntentService是什么

    IntentService是特殊的Service,继承于Service,内部封装了Handler和HandlerThread,可以执行耗时的后台任务,同时由于IntentService是一个Service服务,所以它的优先级比普通的线程要高,因此可用于执行一些优先级比较高的耗时任务。
    当耗时任务执行完成之后,IntentService会自动停止,不需要跟Service一样手动调用stopService()或者stopSelf()。具体的耗时任务在重写的onHandlerIntent()回调方法中执行。

    相关文章

      网友评论

          本文标题:Android中的特殊线程——IntentService

          本文链接:https://www.haomeiwen.com/subject/uewvwftx.html