阅读前若是还未清楚Service服务可以看看这篇文章
第一行代码结合google文档的Service服务解析
在阅读源码的时候发现这个IntentService
怎么废弃了呢?
The Android framework also provides the IntentService subclass of Service that uses a worker thread to handle all of the start requests, one at a time. Using this class is not recommended for new apps as it will not work well starting with Android 8 Oreo, due to the introduction of Background execution limits. Moreover, it’s deprecated starting with Android 11.
官网对此的解释是后台执行的限制导致在11版本的时候废弃了,那么,他到底是怎么用呢?我还没开始怎么就结束了,比龙卷风还快~
Service 一般是默认是在主线程进行的,但是很多东西是需要新开一个线程进行操作的。线程完成它的任务后就得改变,这时
stopSelf
和stopService
就发挥功效,但是忘记了呢?!所以IntentService就出现!
其中的onHandleIntent
方法就是为了实现不用在多构造一个线程然后开开关关的,很麻烦。反正这个对象就已经继承了Service。直接用就好!
我写了一个简单的对象,看看试试
package com.chris.servicepractice; import android.app.IntentService; import android.content.Intent; import android.util.Log; import androidx.annotation.Nullable; /** * 这个IntentService虽然废弃,但是它的出现主要是避免线程的冲突, * 有些时候在使用Service的时候启动一个new Thread ,到头没stop掉就会持续占据,浪费资源 */ public class MyIntentService extends IntentService { public MyIntentService(String name) { super(name); } @Override protected void onHandleIntent(@Nullable Intent intent) { //这里自动启动一个线程进行操作,不会影响到主线程 Log.d("MyIntentService","Thread String :" + Thread.currentThread().getId());//打印线程id就会发现和主线程是不一样的。 } @Override public void onCreate() { super.onCreate(); } }
用法和Service
一样得Start,bind,unbind,stop
You can use JobIntentService as a replacement for IntentService that is compatible with newer versions of Android.
它说让我们去用JobIntentService
去进行替代,但是ta也废弃了~
至少在现在的时间2021-12-25,的确如此!
我可没忽悠,大家伙可以自己去读读官方文档
https://developer.android.google.cn/guide/components/services?hl=en#Lifecycle