Service记住它

  • 四大组件之一的Service不陌生,但是每次想用它做点事情的时候,又必须去查博客,查文档,方能copy出来一个勉强可用的!这样即浪费时间,也让我们对它理解泛泛。在重复了四五次这样的事情的后,终于打算不再懒惰的每次copy来,要好好的把它理一理,写个模板出来!
一,首先,就是启动一个Service了

1.1创建一个service类

public class SmallDownloadService extends Service {

    public static final String TAG = "SmallDownloadService";

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

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

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

    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

}

1.2 在AndroidManifest.xml中声明service




        

    

1.3 启动这个service

Intent startIntent = new Intent(this, SmallDownloadService.class);
                startService(startIntent);
start.png
  • 如果不停止服务,再次点击启动服务,不再执行onCreate()
start2.png
  • 后台也可以看到正在运行的服务
runing.png

1.4 停止service

Intent stopIntent  = new Intent(this, SmallDownloadService.class);
                stopService(stopIntent );
stop.png
二,与Activity建立关联,在服务里面做点事情,绑定服务

2.1 让Activity与Service建立关联onBind()

public class SmallDownloadService extends Service {

    public static final String TAG = "SmallDownloadService";

    private MyBinder mBinder = new MyBinder();

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

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

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

    @Override
    public IBinder onBind(Intent intent) {
        return mBinder;
    }

    class MyBinder extends Binder {

        public void startDownload() {
            Log.d(TAG, "startDownload() executed");

        }

    }

}
  • 建立了一个继承自Binder的内部类,实例化该类,并在onBind()方法中返回该Binder

2.2 绑定服务

Intent bindIntent = new Intent(this, MyService.class);
            bindService(bindIntent, connection, BIND_AUTO_CREATE);
  • 这里的connection就是一种连接服务的接口,后面的BIND_AUTO_CREATE就是绑定后自动开启service。
 SmallDownloadService.MyBinder mBinder;
    private ServiceConnection connection = new ServiceConnection() {
        @Override
        public void onServiceDisconnected(ComponentName name) {}
        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
            mBinder = (SmallDownloadService.MyBinder) service;
            mBinder.startDownload();
        }
    };
image.png
  • 绑定后不会调用服务的onStartCommand方法,建立绑定后我们主要通过connection里面的onServiceConnected方法拿到MyBinder,从而调用其中的startDownload,来达到在Activity页面叫唤service来做事情!
  • 已经绑定了,你再次点击绑定,它什么事情也不会做,不会像开启服务那样,会不断执行onStartCommand方法
  • 该service是整个应用范围内通用的,所以其他应用也可以通过绑定,来得到相同的MyBinder对象,从而调用其中的方法。
bind and do something.png

2.3 取消绑定

 unbindService(connection);
unbind.png
  • 如果你再次点击取消绑定 ,你的程序就蹦了
image.png
image.png
  • 所以我们要判断一下服务是否已经绑定
 if(isServiceRunning(this,"com.smallcake.okhttp.SmallDownloadService"))unbindService(connection);
  • service在后台运行,做一些耗时处理,但它的优先级比较低,如果内存不足,很容易被KO,如果你希望它长久运行,我们可以使用前台service!前台service其实就是在服务中使用Notification
  • 如果我们即启动了service又绑定了service,那么我们就要关闭service,同时也要解除绑定,service才能完全销毁!
  • service运行在主线程,和new 一个Threed运行在子线程不是同一个概念,和Threed没有什么关系!它只是运行在后台的一个无界面程序,如果你做耗时操作,还是需要在service里面去new一个子线程来做,不然照样界面卡顿,甚至ANR。
  • service的优点就是无需界面支持,你Activity挂了,我不挂就照样运行。这样用户就不需要在该页面等待,可以关闭该页面去其他页面做其他事情,或开启其他应用玩耍!再次开启与之关联的页面,可以从新控制service,可控性高。
  • service应用范围: 与服务器建立长时间连接,即心跳连接,但我们要记得开启子线程来做这事。

你可能感兴趣的:(Service记住它)