Service中的代码都是默认运行在主线程中,为了避免ANR,应该在Service的具体执行方法中开启一个子线程。为了可以简单地创建一个异步、会自动停止的Service,Android专门提供了一个IntentService类。
public class MyIntentService extends IntentService {
public MyIntentService(){
//调用父类的有参构造函数
super("MyIntentService");
}
@Override
protected void onHandleIntent(@Nullable Intent intent) {
//在这里处理耗时操作,当执行完成后会自动停止Service
}
}
网友评论