Android-Service 服務詳解

一、Service的簡介

首先,相信很多Android開發者都知道Service是android 系統中的四大組件之一,它跟Activity的級別差不多,但是它只能後臺運行,並且可以和其他組件進行交互。service可以在很多場合的應用中使用,比如播放音樂的時候用戶啓動了其他Activity這個時候程序要在後臺繼續播放,比如後臺下載某些數據時,再或者在後臺記錄你地理信息位置的改變等等,總之服務總是藏在後臺的。

二、 Service啓動流程

Service總共有2種啓動方式,分別是context.startService() 和 context.bindService()

其中context.startService() 的生命週期也就是啓動流程爲:
context.startService() -> onCreate() -> onStartCommand() -> Service running -> context.stopService() -> onDestroy() -> Service stop
在這裏需要注意的是如果你的這個服務已經開啓過一次。但是在你第二次起startService()前你並沒有去註銷這個服務,那麼你這次以及在你註銷前去啓動這個服務都只會運行 onStartCommand()而不會onCreate()。

而context.bindService()的啓動生命週期爲:
context.bindService() -> onCreate() -> onBind() -> Service running -> onUnbind() -> onDestroy() -> Service stop
這種啓動方式也就是常說的Activity與Service通信的啓動方式了,通過這種註冊的方式我們服務中的onBind()機會返回一個IBinder可過活動來操作服務了。實現他們之間的通信。**這裏需要注意的是當Activity關閉時,這裏的Service也會跟着關閉。運行onDestroy() **

在Service每一次的開啓關閉過程中,只有onStart可被多次調用(通過多次startService調用),其他onCreate,onBind,onUnbind,onDestory在一個生命週期中只能被調用一次。

三、代碼示例
這裏我先將所有代碼貼出然後進行拆分
Activity

public class MainActivity extends AppCompatActivity implements View.OnClickListener{
    Button startBtn,stopBtn,bindBtn,unbindBtn,intentService,toActivity2;
    MyService.MyBinder myBinder;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        init();
    }
    private ServiceConnection connection=new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
            myBinder=(MyService.MyBinder)iBinder;
            myBinder.startOne();
            myBinder.stopOne();
        }

        @Override
        public void onServiceDisconnected(ComponentName componentName) {

        }
    };
    public void init(){
        startBtn=findViewById(R.id.startService);
        stopBtn=findViewById(R.id.stopService);
        bindBtn=findViewById(R.id.bindService);
        unbindBtn=findViewById(R.id.unbindService);
        intentService=findViewById(R.id.intentService);
        toActivity2=findViewById(R.id.to_activity2);
        bindBtn.setOnClickListener(this);
        unbindBtn.setOnClickListener(this);
        startBtn.setOnClickListener(this);
        stopBtn.setOnClickListener(this);
        intentService.setOnClickListener(this);
        toActivity2.setOnClickListener(this);
    }

    @Override
    public void onClick(View view) {
        switch (view.getId()){
            case R.id.startService:
                Intent startIntent=new Intent(this,MyService.class);
                startService(startIntent);
                break;
            case R.id.stopService:
                Intent stopIntent=new Intent(this,MyService.class);
                stopService(stopIntent);
                break;
            case R.id.bindService:
                Intent bindIntent=new Intent(this,MyService.class);
                bindService(bindIntent,connection,BIND_AUTO_CREATE);

                break;
            case R.id.unbindService:
                unbindService(connection);
                break;
            case R.id.intentService:
                Intent intent=new Intent(this,MyIntentService.class);
                startService(intent);
                break;
            case R.id.to_activity2:
                Intent intent1=new Intent(MainActivity.this,Main2Activity.class);
                startActivity(intent1);
                MainActivity.this.finish();
                break;
        }
    }
}

Service

public class MyService extends Service {
    private static final String TAG = "MyService";

    MyBinder myBinder=new MyBinder();
    class MyBinder extends Binder{
        public void startOne(){
            Log.d(TAG, "startOne: ");
        }
        public void stopOne(){
            Log.d(TAG, "stopOne: ");
        }
    }
    public MyService() {
    }

    @Override
    public IBinder onBind(Intent intent) {
        Log.d(TAG, "onBind: ");
        return myBinder;

    }

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

    @Override
    public void onCreate() {
        super.onCreate();
        Log.d(TAG, "onCreate: ");
        Intent intent=new Intent(this,MainActivity.class);
        PendingIntent pi=PendingIntent.getActivity(this,0,intent,0);
        Notification notification=new NotificationCompat.Builder(this)
                .setContentTitle("前臺服務")
                .setContentText("這是一條前臺服務")
                .setWhen(System.currentTimeMillis())
                .setSmallIcon(R.drawable.ic_launcher_background)
                .setContentIntent(pi)
                .build();
        startForeground(1,notification);

    }

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

    }

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

AndroidManifest.xml

        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

  
        <service
            android:name=".MyService"
            android:enabled="true"
            android:exported="true" />

        <activity android:name=".Main2Activity"></activity>

然後我們的界面代碼就不放上來了就是幾個按鈕
在這裏插入圖片描述

代碼中可以看到我們在Service中的關鍵生命週期中都log了

我們先來看一下context.startService()的啓動模式這裏是通過Intent來對其進行操作

            case R.id.startService:
                Intent startIntent=new Intent(this,MyService.class);
                startService(startIntent);
                break;
            case R.id.stopService:
                Intent stopIntent=new Intent(this,MyService.class);
                stopService(stopIntent);
                break;

我們先點擊開啓服務然後點擊停止服務看下log信息如下 正如我們所料
在這裏插入圖片描述

在上面我們還說過一個注意事項就是onCreate()方法在服務停止前只會運行一次。我們來驗證一下。同時點擊2下開啓服務如下:
在這裏插入圖片描述
這裏很容易可以看出onCreate()確實只運行了一次。

接下來我們繼續看context.bindService()的啓動方式我們依然是按照上面的測試方法如下:
在這裏插入圖片描述

中間的第2、3條是我在ServiceConnection中寫的調用返回的IBinder中的方法實現與服務的通信

private ServiceConnection connection=new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
            myBinder=(MyService.MyBinder)iBinder;
            myBinder.startOne();
            myBinder.stopOne();
        }

        @Override
        public void onServiceDisconnected(ComponentName componentName) {

        }
    };

好了我們服務的生命週期就將到這裏了大家可以利用服務的生命週期在後臺爲所欲爲了
源碼地址gitHub

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章