美文网首页
Service----IntentService

Service----IntentService

作者: 爱做梦的严重精神病患者 | 来源:发表于2018-11-07 17:40 被阅读0次

Service中的代码都是默认运行在主线程中,为了避免ANR,应该在Service的具体执行方法中开启一个子线程。为了可以简单地创建一个异步、会自动停止的Service,Android专门提供了一个IntentService类

public class MyIntentService extends IntentService {

    public MyIntentService(){
        //调用父类的有参构造函数
        super("MyIntentService");
    }

    @Override
    protected void onHandleIntent(@Nullable Intent intent) {
        //在这里处理耗时操作,当执行完成后会自动停止Service
    }
}

相关文章

  • Service----IntentService

     Service中的代码都是默认运行在主线程中,为了避免ANR,应该在Service的具体执行方法中开启一个子线程...

网友评论

      本文标题:Service----IntentService

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