Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android:(本地、可通信的、前台、遠程)Service使用全面介紹

Android:(本地、可通信的、前台、遠程)Service使用全面介紹

編輯:關於Android編程

前言

Service作為Android四大組件之一,應用非常廣泛 本文將介紹Service最基礎的知識:Service的生命周期


目錄

目錄


1. Service分類

1.1 Service的類型

分類

1.2 特點

Service類型的詳細介紹


2.具體使用解析

2.1 本地Service

這是最普通、最常用的後台服務Service。

2.1.1 使用步驟

步驟1:新建子類繼承Service類
需重寫父類的onCreate()、onStartCommand()、onDestroy()和onBind()方法
步驟2:構建用於啟動Service的Intent對象 步驟3:調用startService()啟動Service、調用stopService()停止服務 步驟4:在AndroidManifest.xml裡注冊Service

2.1.2 實例Demo

接下來我將用一個實例Demo進行本地Service說明

建議先下載Demo再進行閱讀:(carson.ho的Github地址)Demo_for_Service

步驟1:新建子類繼承Service類

需重寫父類的onCreate()、onStartCommand()、onDestroy()和onBind()


MyService.java
public class MyService extends Service {


//啟動Service之後,就可以在onCreate()或onStartCommand()方法裡去執行一些具體的邏輯
//由於這裡作Demo用,所以只打印一些語句
    @Override
    public void onCreate() {
        super.onCreate();
        System.out.println("執行了onCreat()");
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        System.out.println("執行了onStartCommand()");
        return super.onStartCommand(intent, flags, startId);


    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        System.out.println("執行了onDestory()");
    }

    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
}
步驟2:在主布局文件設置兩個Button分別用於啟動和停止Service
activity_main.xml

步驟3:構建Intent對象,並調用startService()啟動Service、stopService停止服務

MainActivity.java

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

    private Button startService;
    private Button stopService;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        startService = (Button) findViewById(R.id.startService);
        stopService = (Button) findViewById(R.id.stopService);

        startService.setOnClickListener(this);
        startService.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {

            //點擊啟動Service Button
            case R.id.startService:
                //構建啟動服務的Intent對象
                Intent startIntent = new Intent(this, MyService.class);
                //調用startService()方法-傳入Intent對象,以此啟動服務
                startService(startIntent);

            //點擊停止Service Button
            case R.id.stopService:
                //構建停止服務的Intent對象
                Intent stopIntent = new Intent(this, MyService.class);
                //調用stopService()方法-傳入Intent對象,以此停止服務
                stopService(stopIntent);

        }
    }
}
步驟4:在AndroidManifest.xml裡注冊Service
AndroidManifest.xml



    
        

            
                
                
            

        

        //注冊Service服務
        
        

    


Androidmanifest裡Service的常見屬性說明

屬性 說明 備注 android:name Service的類名   android:label Service的名字 若不設置,默認為Service類名 android:icon Service的圖標   android:permission 申明此Service的權限 有提供了該權限的應用才能控制或連接此服務 android:process 表示該服務是否在另一個進程中運行(遠程服務) 不設置默認為本地服務;remote則設置成遠程服務 android:enabled 系統默認啟動 true:Service 將會默認被系統啟動;不設置則默認為false android:exported 該服務是否能夠被其他應用程序所控制或連接 不設置默認此項為 false

2.1.3 測試結果

測試結果.png

2.1.4 Demo地址

Carson.ho的Github地址:Demo_for_Service

2.2 可通信的服務Service

上面介紹的Service是最基礎的,但只能單機使用,即無法與Activity通信 接下來將在上面的基礎用法上,增設“與Activity通信”的功能,即使用綁定Service服務(Binder類、bindService()、onBind()、unbindService()、onUnbind())

2.2.1 實例Demo

接下來我將用一個實例Demo進行可通信的服務Service說明

建議先下載Demo再進行閱讀:[(carson.ho的Github地址)Demo_for_Service](https://github.com/Carson-Ho/Demo_Service/tree/719e3b9ffd5017c334cdfdaf45b6a72776a2066a
)

步驟1:在新建子類繼承Service類,並新建一個子類繼承自Binder類、寫入與Activity關聯需要的方法、創建實例
public class MyService extends Service {

    private MyBinder mBinder = new MyBinder();

    @Override
    public void onCreate() {
        super.onCreate();
        System.out.println("執行了onCreat()");
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        System.out.println("執行了onStartCommand()");
        return super.onStartCommand(intent, flags, startId);


    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        System.out.println("執行了onDestory()");
    }

    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        System.out.println("執行了onBind()");
        //返回實例
        return mBinder;
    }


    @Override
    public boolean onUnbind(Intent intent) {
        System.out.println("執行了onUnbind()");
        return super.onUnbind(intent);
    }

    //新建一個子類繼承自Binder類
    class MyBinder extends Binder {

        public void service_connect_Activity() {
            System.out.println("Service關聯了Activity,並在Activity執行了Service的方法");

        }
    }
}
步驟2:在主布局文件再設置兩個Button分別用於綁定和解綁Service

步驟3:在Activity通過調用MyBinder類中的public方法來實現Activity與Service的聯系

即實現了Activity指揮Service干什麼Service就去干什麼的功能


MainActivity.java
public class MainActivity extends AppCompatActivity implements View.OnClickListener {

    private Button startService;
    private Button stopService;
    private Button bindService;
    private Button unbindService;

    private MyService.MyBinder myBinder;


    //創建ServiceConnection的匿名類
    private ServiceConnection connection = new ServiceConnection() {

        //重寫onServiceConnected()方法和onServiceDisconnected()方法
        //在Activity與Service建立關聯和解除關聯的時候調用
        @Override
        public void onServiceDisconnected(ComponentName name) {
        }

        //在Activity與Service解除關聯的時候調用
        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
            //實例化Service的內部類myBinder
            //通過向下轉型得到了MyBinder的實例
            myBinder = (MyService.MyBinder) service;
            //在Activity調用Service類的方法
            myBinder.service_connect_Activity();
        }
    };

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


        startService = (Button) findViewById(R.id.startService);
        stopService = (Button) findViewById(R.id.stopService);

        startService.setOnClickListener(this);
        stopService.setOnClickListener(this);

        bindService = (Button) findViewById(R.id.bindService);
        unbindService = (Button) findViewById(R.id.unbindService);

        bindService.setOnClickListener(this);
        unbindService.setOnClickListener(this);

    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {

            //點擊啟動Service
            case R.id.startService:
                //構建啟動服務的Intent對象
                Intent startIntent = new Intent(this, MyService.class);
                //調用startService()方法-傳入Intent對象,以此啟動服務
                startService(startIntent);
                break;

            //點擊停止Service
            case R.id.stopService:
                //構建停止服務的Intent對象
                Intent stopIntent = new Intent(this, MyService.class);
                //調用stopService()方法-傳入Intent對象,以此停止服務
                stopService(stopIntent);
                break;

            //點擊綁定Service
            case R.id.bindService:
                //構建綁定服務的Intent對象
                Intent bindIntent = new Intent(this, MyService.class);
                //調用bindService()方法,以此停止服務

                bindService(bindIntent,connection,BIND_AUTO_CREATE);
                //參數說明
                //第一個參數:Intent對象
                //第二個參數:上面創建的Serviceconnection實例
                //第三個參數:標志位
                //這裡傳入BIND_AUTO_CREATE表示在Activity和Service建立關聯後自動創建Service
                //這會使得MyService中的onCreate()方法得到執行,但onStartCommand()方法不會執行
                break;

            //點擊解綁Service
            case R.id.unbindService:
                //調用unbindService()解綁服務
                //參數是上面創建的Serviceconnection實例
                unbindService(connection);
                break;

                default:
                    break;

        }
    }
}

2.2.2 測試結果

![測試結果11.png](http://upload-images.jianshu.io/upload_images/944365-31165a1f2064a06a.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

2.2.3 Demo

carson.ho的Github地址:[Demo_for_Service](https://github.com/Carson-Ho/Demo_Service/tree/719e3b9ffd5017c334cdfdaf45b6a72776a2066a)

2.3 前台Service

前台Service和後台Service(普通)最大的區別就在於:
- 前台Service在下拉通知欄有顯示通知(如下圖),但後台Service沒有;
TT9$TN8IK1SAPDT%~0IRLS2.pngvc+1zaOstbHPtc2zs/bP1sTatOayu9fjx+m/9sqxo6y63NPQv8nE3Lvhsbu72MrVDQo8aDEgaWQ9"231-具體使用">2.3.1 具體使用

用法很簡單,只需要在原有的Service類對onCreate()方法進行稍微修改即可,如下圖:

@Override
    public void onCreate() {
        super.onCreate();
        System.out.println("執行了onCreat()");

        //添加下列代碼將後台Service變成前台Service
        //構建"點擊通知後打開MainActivity"的Intent對象
        Intent notificationIntent = new Intent(this,MainActivity.class);
        PendingIntent pendingIntent = PendingIntent.getActivity(this,0,notificationIntent,0);

        //新建Builer對象
        Notification.Builder builer = new Notification.Builder(this);
        builer.setContentTitle("前台服務通知的標題");//設置通知的標題
        builer.setContentText("前台服務通知的內容");//設置通知的內容
        builer.setSmallIcon(R.mipmap.ic_launcher);//設置通知的圖標
        builer.setContentIntent(pendingIntent);//設置點擊通知後的操作

        Notification notification = builer.getNotification();//將Builder對象轉變成普通的notification
        startForeground(1, notification);//讓Service變成前台Service,並在系統的狀態欄顯示出來

    }

2.3.2 測試結果

運行後,當點擊Start Service或Bind Service按鈕,Service就會以前台Service的模式啟動(通知欄上有通知),如下圖
點擊啟動服務

2.4 遠程Service

具體請看我寫的另外一篇文章:Android:遠程服務Service(含AIDL & IPC講解)

3. 使用場景

通過上述描述,你應該對Service類型及其使用非常了解; 那麼,我們該什麼時候用哪種類型的Service呢? 各種Service的使用場景請看下圖:
使用場景
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved