service

service是运行在ui线程中的一个服务,不是一个线程也不是一个进程。

启动

startService(intent);

该方式启动的Service会一直在后台运行,如果没关闭service的话,即使activity关闭还是在后台运行。也就是说启动service后就和当前的activity没关系了。

bindService(intent,ServiceConnection,flag);

方式启动的service是和当前的activity有绑定关系的,如果当前activity关闭并且没有unBind会抛出一个异常:android.app.ServiceConnectionLeaked: Activity xxx.MyActivity has leaked ServiceConnection.但是这个异常对前台没影响。

生命周期

startService

Context.startService启动:onCreate -> onStartCommand(onStart)
Context.stopService停止: onDestroy

1.多次启动service的话,只会执行一次onCreate,会多次执行onStartCommand方法(service没有被Destroy).
2.如果不手动关闭service的话,service会一直运行。除非调用stopServic())或者service执行完业务后通过stopSelf()关闭自己。
3.如果service中启动了一个线程,关闭service后,如果线程没有执行完的话还会继续执行,所以关闭service的时候一定要确保service中的业务已执行完成或者关闭。

bindService

onCreate -> onBind ->onUnbind(onReBind) ->onDestroy
bindService: onCreate -> onBind
unbindService: onUnbind -> onDestroy

1.多次绑定service的话,不会执行任何生命周期(service在bind状态),只会bind一次。
2.onReBind只会在混合启动时触发

混合启动

一个service启动时使用了startService和bindService。
分析:

  1. 通过startService启动的服务必须使用stopService停止。
  2. 通过bindService启动的服务必须使用unBindService停止。
  3. 不管是通过哪种方式启动的service首次会执行onCreate。
  4. 不管是通过哪种方式启动的service再次启动还是按自身的生命周期执行,startService(多次onStartCommand),bindService(一次onBind).
  5. 停止的时候必须调用两种方式自身的关闭事件才能完成整个生命周期。(startService-stopService),(bindService-unBindService).
  6. 因为startService没有onStop,是执行的onDestroy,所以只有最后一个关闭事件才会触发onDestroy事件。如果stopService不是最后一个关闭的话就不会触发service的生命周期。
    测试日志:
// bind -> start
...bind click 1
....MyService onCreate=1
....MyService onBind=1
...onServiceConnected 1
...start click 1
....MyService onStartCommand=1
....MyService onStart=1
//start -> bind
...start click 1
....MyService onCreate=1
....MyService onStartCommand=1
....MyService onStart=1
...bind click 1
....MyService onBind=1
...onServiceConnected 1
// stop -> unbind
...stop click 1
...unbind click 1
....MyService onUnbind=1
....MyService onDestroy=1
// unbind -> stop
...unbind click 1
....MyService onUnbind=1
...stop click 1
....MyService onDestroy=1
  1. 关于onReBind, 要满足两个条件:
    ->onUnbind返回true,onReBind method later called when new clients bind to it。
    ->通过混合启动。如果仅仅是bindService启动的话,一unBind就destroy了。
    这样的话如果unBind后,再次点击绑定就会执行onReBind.如果 onUnbind返回false,进行unBind后,再次绑定不会执行任何生命周期(直接建立ServiceConnection连接进行访问的服务,不会执行service的生命周期).
// onUnbind ->false
...bind click 1
....MyBinder getService=1
....MyService dosomething=1
...onServiceConnected 1
....MyBinder something=1
// onUnbind ->true
...bind click 1
....MyBinder getService=1
....MyService dosomething=1
...onServiceConnected 1
....MyBinder something=1
....MyService onRebind=1

不被回收处理

cpu休眠处理

IntentService

在service中创建了一个线程(HandlerThread),用来异步加载。执行完成后会自动关闭服务。

public abstract class IntentService extends Service{
    private final class ServiceHandler extends Handler {
        public ServiceHandler(Looper looper) {
            super(looper);
        }

        @Override
        public void handleMessage(Message msg) {
            onHandleIntent((Intent)msg.obj);
            stopSelf(msg.arg1);
        }
    }

    public void onCreate() {
        super.onCreate();
        HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
        thread.start();

        mServiceLooper = thread.getLooper();
        mServiceHandler = new ServiceHandler(mServiceLooper);
    }

    @Override
    public void onStart(Intent intent, int startId) {
        Message msg = mServiceHandler.obtainMessage();
        msg.arg1 = startId;
        msg.obj = intent;
        mServiceHandler.sendMessage(msg);
    }
}

其使用方法和普通service没区别,唯一的不同就是自身拥有一个异步方法(onHandleIntent)。

public class BaseIntentService extends IntentService {
    private final String TAG = "BaseIntentService";

    BaseIntentServiceBinder mBinder = new BaseIntentServiceBinder();

    public BaseIntentService() {
        super("isname");

    }

    @Override
    protected void onHandleIntent(Intent intent) {

        int order = intent.getIntExtra("order",-1);
        Log.d(TAG, "BaseIntentService onHandleIntent order="+order);
        Log.d(TAG, "BaseIntentService onHandleIntent thread->" + Thread.currentThread().getId()+",order="+order);
        try {
            Log.d(TAG, "BaseIntentService onHandleIntent do somethings...order="+order);
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        Log.d(TAG, "BaseIntentService onHandleIntent done order="+order);

    }

    @Override
    public boolean onUnbind(Intent intent) {
        Log.d(TAG, "BaseIntentService onUnbind");
        return super.onUnbind(intent);
    }

    @Override
    public void onDestroy() {
        Log.d(TAG, "BaseIntentService onDestroy");
        super.onDestroy();
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Log.d(TAG, "BaseIntentService onStartCommand startId="+startId);
        return super.onStartCommand(intent, flags, startId);
    }

    @Override
    public void onCreate() {
        Log.d(TAG, "BaseIntentService onCreate");
        super.onCreate();
        Log.d(TAG, "BaseIntentService onCreate thread->" + Thread.currentThread().getId());
    }

    @Override
    public IBinder onBind(Intent intent) {
        Log.d(TAG, "BaseIntentService onBind");
        //        return super.onBind(intent);
        return mBinder;
    }

    public class BaseIntentServiceBinder extends Binder {
        public int testMethod(int num) {
            return num;
        }
    }

  1. 因为intentService里面是个消息队列,所以队列里面有消息的时候再添加消息,也是同一个线程在执行。
  2. 在工作线程中调用该方法。每一个时刻只能处理一个intent请求,当同时有多个intent请求时,也就是客户端同时多次调用Content#startService方法启动同一个服务时,这些请求就会放于消息队列中,直到前面的intent异步任务请求处理完成才会处理下一个intent请求。直到所有的intent请求结束之后,IntentService服务会调用stopSelf停止当前服务。也就是当intent异步任务处理结束之后,对应的IntentService服务会自动销毁,进而调用IntentService#onDestroy方法.
  3. 列外还有一个问题,这里onHandleIntent后就执行stopSelf,为什么请求多次的时候,第一次执行完没有stop,而是一直再遍历消息。这里要看service启动,停止的源码进行分析(启动服务的时候如果服务已经存在则会将该请求添加到ServiceRecord.deliveredStarts中,参照service的启动ActiveServices.sendServiceArgsLocked()).

service测试代码

public class MyService extends Service {

    private boolean keepalive = false;
    private MyBinder binder = new MyBinder();

    private int count = 0;

    private Thread mThread;

    @Override
    public IBinder onBind(Intent intent) {
        LogUtil.debug("....MyService onBind=" + Thread.currentThread().getId());

        return binder;
    }

    @Override
    public void onCreate() {
        LogUtil.debug("....MyService onCreate=" + Thread.currentThread().getId());
        super.onCreate();
        doBussness();
    }

    @Override
    public void onDestroy() {
        LogUtil.debug("....MyService onDestroy=" + Thread.currentThread().getId());

        super.onDestroy();
        if (keepalive) {
            stopForeground(true);
        }

        if(mThread != null && mThread.isAlive()){
            LogUtil.debug("....MyService onDestroy thread isAlive");
            mThread.interrupt();
        }else{
            LogUtil.debug("....MyService onDestroy thread not alive");
        }
    }

    @Override
    public boolean onUnbind(Intent intent) {
        LogUtil.debug("....MyService onUnbind=" + Thread.currentThread().getId());
//        return super.onUnbind(intent);
        return true;
    }

    @Override
    public void onRebind(Intent intent) {
        LogUtil.debug("....MyService onRebind=" + Thread.currentThread().getId());
        super.onRebind(intent);
    }

    @Override
    @Deprecated
    public void onStart(Intent intent, int startId) {
        super.onStart(intent, startId);
        LogUtil.debug("....MyService onStart=" + Thread.currentThread().getId());
        if (keepalive) {
            LogUtil.debug("....MyService startForeground=" + Thread.currentThread().getId());
            startForeground(0, null);
        }


    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        LogUtil.debug("....MyService onStartCommand=" + Thread.currentThread().getId());

        return super.onStartCommand(intent, flags, startId);
    }

    private void doBussness() {

        if(mThread != null && mThread.isAlive()){
            return;
        }
        mThread = new Thread(new Runnable() {
            @Override
            public void run() {
                while (!mThread.isInterrupted()) {
                    LogUtil.debug("count=" + count);
                    try {
                        Thread.sleep(1000);
                        count++;
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                        mThread.interrupt();
                    }
                }
            }
        });
        mThread.start();
    }

    public void dosomething() {
        LogUtil.debug("....MyService dosomething=" + Thread.currentThread().getId());
    }

    class MyBinder extends Binder {

        public MyService getService() {
            LogUtil.debug("....MyBinder getService=" + Thread.currentThread().getId());
            return MyService.this;
        }

        public void something() {
            LogUtil.debug("....MyBinder something=" + Thread.currentThread().getId());
        }
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,816评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,729评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,300评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,780评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,890评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,084评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,151评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,912评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,355评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,666评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,809评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,504评论 4 334
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,150评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,882评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,121评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,628评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,724评论 2 351

推荐阅读更多精彩内容