Android BindService使用案例講解

最近學習瞭一下Android裡面的Service的應用,在BindService部分小卡瞭一下,主要是開始沒有徹底理解為什麼要這麼實現。

BindService和Started Service都是Service,有什麼地方不一樣呢:

  1. 1. Started Service中使用StartService()方法來進行方法的調用,調用者和服務之間沒有聯系,即使調用者退出瞭,服務依然在進行【onCreate()-  >onStartCommand()->startService()->onDestroy()】,註意其中沒有onStart(),主要是被onStartCommand()方法給取代瞭,onStart方法不推薦使用瞭。
  2. 2. BindService中使用bindService()方法來綁定服務,調用者和綁定者綁在一起,調用者一旦退出服務也就終止瞭【onCreate()->onBind()->onUnbind()->onDestroy()】。

調用者Activity:

package com.zys.service;

import com.zys.service.BindService.MyBinder;

import android.R.bool;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity {
    private Button startBtn;
    private Button stopBtn;
    private boolean flag;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        flag = false;
        //設置
        startBtn = (Button)this.findViewById(R.id.startBtn);
        stopBtn = (Button)this.findViewById(R.id.stopBtn);
        startBtn.setOnClickListener(listener);
        stopBtn.setOnClickListener(listener);
    }
    
    private OnClickListener listener = new OnClickListener() {
        
        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            switch (v.getId()) {
            case R.id.startBtn:
                bindService();
                break;
            case R.id.stopBtn:
                unBind();
                break;
            default:
                break;
            }
        }
        
        
    };
    
    private void bindService(){
        Intent intent = new Intent(MainActivity.this,BindService.class);
        bindService(intent, conn, Context.BIND_AUTO_CREATE);
    }
    
    private void unBind(){
        if(flag == true){
            unbindService(conn);
            flag = false;
        }
    }
    
    private ServiceConnection conn = new ServiceConnection() {
        
        @Override
        public void onServiceDisconnected(ComponentName name) {
            // TODO Auto-generated method stub
            
        }
        
        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
            // TODO Auto-generated method stub
            MyBinder binder = (MyBinder)service;
            BindService bindService = binder.getService();
            bindService.MyMethod();
            flag = true;
        }
    };
    
}

服務BindService

package com.zys.service;

import java.io.FileDescriptor;

import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.os.IInterface;
import android.os.Parcel;
import android.os.RemoteException;
import android.util.Log;

public class BindService extends Service {

    private static final String TAG = "BindService";

    public void MyMethod(){
        Log.i(TAG, "BindService-->MyMethod()");
    }
    
    @Override
    public IBinder onBind(Intent intent) {
        // TODO Auto-generated method stub
        return myBinder;
    }
    
    public class MyBinder extends Binder{
        
        public BindService getService(){
            return BindService.this;
        }
    }
    
    private MyBinder myBinder = new MyBinder();
}

     由於Android 中的Service使用瞭onBind 的方法去綁定服務,返回一個Ibinder對象進行操作,而我們要獲取具體的Service方法的內容的時候,我們需要Ibinder對象返回具體的Service對象才能操作,所以說具體的Service對象必須首先實現Binder對象,這個樣子的話我們才能利用bindService的方法對Service進行綁定,獲取Binder對象之後獲取具體的Service對象,然後才獲取Service中的方法等等。所以我們需要註意的是bindService的方式去綁定服務獲取的必定是實現瞭Binder的對象,所以這是我們必須使用Binder的方式去獲取Service的方式而不是直接使用Service的類,這個是Android內部實現所約束的。

方法過程如下:

Intent intent = new Intent(MainActivity.this,BindService.class)->新建瞭BindService對象->新建瞭MyBinder對象

->bindService(intent, conn, Context.BIND_AUTO_CREATE);->onBind()函數  —–傳遞MyBinder對象——->onServiceConnected()

 –> 通過傳遞的Binder對象獲取剛剛和Binder對象對應的BindService 對象  –>調用Service中定義的方法。

    這個其中必須通過Binder對象,因為是通過Binder對象來傳遞的,通過Binder對象獲取Service對象,然後獲取所需的服務,所以Service必須實現Binder,以便傳遞和使用。

到此這篇關於Android BindService使用案例講解的文章就介紹到這瞭,更多相關Android BindService使用內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: