【艺术探索】AIDL使用示例

AIDL(Android Interface Definition Language)指的就是接口定义语言,通过它可以让客户端与服务端在进程间使用共同认可的编程接口来进行通信

AIDL使用的步骤相对较多,主要总结为三个基本步骤:

  • 创建AIDL接口
  • 根据AIDL创建远程Service服务
  • 绑定远程Service服务
  1. 创建AIDL接口

    • 创建AIDL接口

      在工程目录中,依次app ->new->AIDL,即可创建接口如下:

      interface IMyAidlInterface2 {
          /**
           * 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);
      }
      

      不需要的basicTypes 方法可以删掉,AIDL接口支持的数据类型StringCharSequenceListMap以及自定义的数据类型(需要实现Parcelable接口)

    • 在AIDL包下创建自定义的数据类型

      新建Pigbean.java,如下:

      package com.example.juny.devofexploration;
      import android.os.Parcel;
      import android.os.Parcelable;
      /**
       * @author ChenRunFang
       */
      public class PigBean implements Parcelable {
          public String name;
          public String weight;
      
          protected PigBean(String name, String weight) {
              this.name = name;
              this.weight = weight;
          }
      
          @Override
          public void writeToParcel(Parcel dest, int flags) {
              dest.writeString(name);
              dest.writeString(weight);
          }
      
          @Override
          public int describeContents() {
              return 0;
          }
      
          public static final Creator<PigBean> CREATOR = new Creator<PigBean>() {
              @Override
              public PigBean createFromParcel(Parcel in) {
                  return new PigBean(in.readString(),in.readString());
              }
      
              @Override
              public PigBean[] newArray(int size) {
                  return new PigBean[size];
              }
          };
      }
      
      

      同时,,创建PigBean.aidl,声明该类实现了parcelable接口,如:

      package com.example.juny.devofexploration;
      parcelable PigBean;
      

      修改 创建AIDL接口方法如下:

      interface IMyAidlInterface {
          void addPig(in PigBean pig);
             List<PigBean> getPigList();
      }
      
      • 根据aidl文件生成java接口文件

      这个步骤Android Studio已经帮我们集成好了,只需要点击 Build -> Make Project,或者点击AS上的那个小锤子图标就可以,构建完后将会自动根据我们定义的IMyAidlInterface.aidl文件生成IMyAidlInterface.java接口类,可以在build/generated/source/aidl/debug/路径下找到这个类

  2. 根据AIDL接口,远程服务Service实现

          `mIBinder`对象实例化了`IMyAidlInterface.Stub`,并在回调接口中实现了最终的处理逻辑当与客户端绑定时,会触发onBind()方法,并返回一个Binder对象给客户端使用,客户端就可以通过这个类调用服务里实现好的接口方法:
    
    package com.example.juny.devofexploration;
    
    import android.app.Service;
    import android.content.Intent;
    import android.os.IBinder;
    import android.os.RemoteException;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * @author ChenRunFang
     */
    public class MyAidlService extends Service {
        private List<PigBean> mPigBeans;
    
        public MyAidlService() {
        }
    
        private IBinder mIBinder = new IMyAidlInterface.Stub() {
            @Override
            public void addPig(PigBean pig) throws RemoteException {
                mPigBeans.add(pig);
            }
    
            @Override
            public List<PigBean> getPigList() throws RemoteException {
                return mPigBeans;
            }
        };
    
        @Override
        public IBinder onBind(Intent intent) {
            mPigBeans = new ArrayList<>();
            return mIBinder;
        }
    }
    
    

    记得在AndroidManifest中声明, 并使用android:process属性指定其运行在新的进程中:

            <service
                android:name=".MyAidlService"
                android:process=":process"/>
    
  3. 客户端绑定远程服务

    • 创建连接对象 mServiceConnection

    • 使用Intent 的 bindService(intent, mServiceConnection, Context.BIND_AUTO_CREATE) 方法进行连接

    • 通过IMyAidlInterface对象调用接口方法

      整体代码如下:

      package com.example.juny.devofexploration;
      
      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.os.RemoteException;
      import android.support.v7.app.AppCompatActivity;
      import android.view.View;
      import android.widget.Button;
      import android.widget.Toast;
      
      import java.util.List;
      
      /**
       * @author ChenRunFang
       */
      public class MainActivity extends AppCompatActivity {
          private IMyAidlInterface mIMyAidlInterface;
          private PigBean mPigBean;
          private Button mBindBtn;
          private Button mCommunicationBtn;
      
          private ServiceConnection mServiceConnection = new ServiceConnection() {
              @Override
              public void onServiceConnected(ComponentName name, IBinder service) {
                  mIMyAidlInterface = IMyAidlInterface.Stub.asInterface(service);
              }
      
              @Override
              public void onServiceDisconnected(ComponentName name) {
                  mIMyAidlInterface = null;
              }
          };
      
          @Override
          protected void onCreate(Bundle savedInstanceState) {
              super.onCreate(savedInstanceState);
              setContentView(R.layout.activity_main);
              mBindBtn = findViewById(R.id.btn_bind);
              mCommunicationBtn = findViewById(R.id.btn_communication);
      
              mBindBtn.setOnClickListener(new View.OnClickListener() {
                  @Override
                  public void onClick(View v) {
                      Intent intent = new Intent(getApplicationContext(), MyAidlService.class);
                      bindService(intent, mServiceConnection, Context.BIND_AUTO_CREATE);
                  }
              });
      
              mCommunicationBtn.setOnClickListener(new View.OnClickListener() {
                  @Override
                  public void onClick(View v) {
                      mPigBean = new PigBean("zu", "100");
                      try {
                          mIMyAidlInterface.addPig(mPigBean);
                          List<PigBean> mPigList = mIMyAidlInterface.getPigList();
                          Toast.makeText(MainActivity.this, "zhu = " + mPigList.get(0).name + mPigList.get(0).weight, Toast.LENGTH_SHORT).show();
      
                      } catch (RemoteException e) {
                          e.printStackTrace();
                      }
      
                  }
              });
          }
      }
      
      
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,039评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,223评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,916评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,009评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,030评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,011评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,934评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,754评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,202评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,433评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,590评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,321评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,917评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,568评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,738评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,583评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,482评论 2 352

推荐阅读更多精彩内容