Android姿势点梳理-IntentService

IntentService是Service类的子类,用来处理异步请求。客户端通过startService(Intent)方法传递请求给IntentService,  IntentService通过worker thread处理每个Intent对象,执行完所有工作后自动停止Service。  写构造方法 复写onHandleIntent()方法 IntentService执行如下操作     1.创
相关文章
相关标签/搜索