溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android中如何使用aidl

發(fā)布時(shí)間:2020-07-17 16:39:19 來源:億速云 閱讀:170 作者:小豬 欄目:開發(fā)技術(shù)

這篇文章主要講解了Android中如何使用aidl,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。

AIDL是Android中IPC(Inter-Process Communication)方式中的一種,AIDL是Android Interface definition language的縮寫(對(duì)于小白來說,AIDL的作用是讓你可以在自己的APP里綁定一個(gè)其他APP的service,這樣你的APP可以和其他APP交互。)

AIDL只是Android中眾多進(jìn)程間通訊方式中的一種方式,

AIDL和Messenger的區(qū)別:

  1. Messenger不適用大量并發(fā)的請(qǐng)求:Messenger以串行的方式來處理客戶端發(fā)來的消息,如果大量的消息同時(shí)發(fā)送到服務(wù)端,服務(wù)端仍然只能一個(gè)個(gè)的去處理。
  2. Messenger主要是為了傳遞消息:對(duì)于需要跨進(jìn)程調(diào)用服務(wù)端的方法,這種情景不適用Messenger。
  3. Messenger的底層實(shí)現(xiàn)是AIDL,系統(tǒng)為我們做了封裝從而方便上層的調(diào)用。
  4. AIDL適用于大量并發(fā)的請(qǐng)求,以及涉及到服務(wù)端端方法調(diào)用的情況
     

AIDL通信的原理:首先看這個(gè)文件有一個(gè)叫做proxy的類,這是一個(gè)代理類,這個(gè)類運(yùn)行在客戶端中,其實(shí)AIDL實(shí)現(xiàn)的進(jìn)程間的通信并不是直接的通信,客戶端和服務(wù)端都是通過proxy來進(jìn)行通信的:客戶端調(diào)用的方法實(shí)際是調(diào)用是proxy中的方法,然后proxy通過和服務(wù)端通信將返回的結(jié)果返回給客戶端。

1、AIDL的作用

AIDL是用于Android的IPC通訊的,因此可以在一個(gè)APP內(nèi)部通訊,也可以創(chuàng)建兩個(gè)APP之間進(jìn)行通訊。

AIDL的職能分配很明確,Service作為后臺(tái)運(yùn)行作為服務(wù)器管理各種交互,Client作為客戶端請(qǐng)求數(shù)據(jù)或調(diào)用Service的方法。

2、AIDL的簡(jiǎn)單使用

1)創(chuàng)建一個(gè)aidl文件,直接右鍵創(chuàng)建就可以了,

package com.example.mytest;

// IMyAidlInterface.aidl
package com.example.mytest;
 
// Declare any non-default types here with import statements
 
interface IMyAidlInterface {
  /**
   * Demonstrates some basic types that you can use as parameters
   * and return values in AIDL.
   */
  void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat,
      double aDouble, String aString);
  String add(int x , int y);
}

2)選中剛剛建立的 .aidl文件 生產(chǎn)對(duì)應(yīng)的java文件。

AndroidStudio 可以通過Build--》model App 完成

3)編寫Service的具體對(duì)象 實(shí)現(xiàn)接口

package com.example.mytest;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;
import android.util.Log;
public class FirstService extends Service {
  public FirstService() {
  }
  private static String Tag = "FirstService";
  @Override
  public IBinder onBind(Intent intent) {
    // TODO: Return the communication channel to the service.
    //throw new UnsupportedOperationException("Not yet implemented");
    Log.d(Tag,"service on bind");
    return mBinder;
  }
  @Override
  public void onCreate() {
    super.onCreate();
    Log.d(Tag,"OnCreate");
  }
  @Override
  public int onStartCommand(Intent intent, int flags, int startId) {
    Log.d(Tag,"onStartCommand");
    return START_STICKY;
  }
  @Override
  public boolean onUnbind(Intent intent) {
    Log.d(Tag,"onUnbind");
    return super.onUnbind(intent);
  }
  @Override
  public void onDestroy() {
    super.onDestroy();
    Log.d(Tag,"onDestroy");
  }
  IMyAidlInterface.Stub mBinder = new IMyAidlInterface.Stub(){
    @Override
    public void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat, double aDouble, String aString) throws RemoteException {
    }
    @Override
    public String add(int x, int y) throws RemoteException {
      Log.d(Tag,x + "--" + y);
      return String.valueOf(x + y);
    }
  };
}

注意:onBund 返回IBinder類型,為了后面的回調(diào)會(huì)調(diào)動(dòng)

4)確定一下AndroidManifest.xml里面的Service內(nèi)容

 <service
      android:name=".FirstService"
      android:enabled="true"
      android:exported="true">
      <intent-filter>
        <action android:name="com.example.mytest.aidl.FirstService"/>
      </intent-filter>
 
    </service>

5)打開服務(wù)

 private Button btnStartService; 
  private Button btnBindService;
  
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
 
    initView();
  }
 
  private void initView() {
    tvId = (TextView) findViewById(R.id.tv_id);
 
    btnStartService = (Button) findViewById(R.id.btn_Start_Service);
    btnStartService.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View view) {
        Intent intent = new Intent();
        intent.setPackage("com.example.mytest");
        intent.setAction("com.example.mytest.aidl.FirstService");
        startService(intent);
      }
    });
 
    btnBindService = (Button) findViewById(R.id.btnBindService);
    btnBindService.setOnClickListener(new View.OnClickListener() {
      @Override
        public void onClick(View view) {
            bind();
        }
    });
  
 
  private void bind(){
    Log.d(Tag, "bind");
    Intent intent = new Intent();
    intent.setPackage("com.example.mytest");
    if(controllerConnection != null){
      this.bindService(intent,controllerConnection,this.BIND_AUTO_CREATE);//綁定服務(wù),建立鏈接
    }
    else {
      Log.d(Tag, "controllerConnection != null");
    }
  }
 
  private void unbind(){
    if(controllerConnection != null && myAIDLController.asBinder().isBinderAlive()){
      try{
        Log.d(Tag, "this.unbindService(controllerConnection);");
        this.unbindService(controllerConnection);
      } catch (Exception localException) {
        Log.w(Tag, "unbind Exception localException");
      }
    }
  }

在bind的時(shí)候是異步的,因此可以通過onServiceConnected()來判斷綁定上后的操作。

private ServiceConnection controllerConnection = new ServiceConnection(){
 
    @Override
    public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
      Log.d(Tag,"onServiceConnected");
 
      myAIDLController = IMyAidlInterface.Stub.asInterface(iBinder);
      if (myAIDLController != null) {
        try {
          Log.d(Tag, "ServiceConnection success");
          Toast.makeText(MainActivity.this, "ServiceConnection success", Toast.LENGTH_LONG).show();
        } catch (Exception localException) {
          Log.w(Tag, "Exception localException");
        }
      }
    }
 
    @Override
    public void onServiceDisconnected(ComponentName componentName) {
      Log.d(Tag,"onServiceDisconnected");
      Toast.makeText(MainActivity.this, "onServiceDisconnected", Toast.LENGTH_LONG).show();
 
      myAIDLController = null;
    }
 
    @Override
    public void onBindingDied(ComponentName name) {
      Log.d(Tag,"onBindingDied");
    }
 
    @Override
    public void onNullBinding(ComponentName name) {
      Log.d(Tag,"onNullBinding");
    }
  };

6)調(diào)用Service方法add()

調(diào)用的時(shí)候需要綁定Service方法,上面已經(jīng)有了,接下來調(diào)用就簡(jiǎn)單了,創(chuàng)建一個(gè)Button,然后拿到Service的控制對(duì)象,調(diào)用方法add

 btnServiceFunc = (Button) findViewById(R.id.btnServiceFunc);
    btnServiceFunc.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View view) {
        try {
          Log.d(Tag, String.valueOf( myAIDLController.add(1,2)));
        } catch (RemoteException e) {
          e.printStackTrace();
        }
      }
    });

看完上述內(nèi)容,是不是對(duì)Android中如何使用aidl有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI