AIDL简单示例
1).AIDL简介:AIDL(Android Interface Definition Language),即安卓接口定义语言。
AIDL主要是用于进程对远程Service的通信,也就是一个进程采用AIDL可以启动另一个进程的Service,并从该Service中获取数据(通信)。
2).具体做法:
1.首先创建一个AIDL接口代码:
//com.example.aidl.AidlGetServiceData.aidlpackagecom.example.aidl;interfaceAidlGetServiceData{intgetAge();StringgetName();}
/*
注:AIDL定义接口的源代码必须以.aidl结尾。
AIDL接口中用到的数据类型,除了基本类型,String,List,Map,CharSequence之外,其他类型均全部需要导包。
定义好上面的AIDL接口后,ADT工具会自动在gen/com/example/aidl中生成一个AidlGetServiceData.java接口,在该接口里面包含一个Stub内部类,该类实现了IBinder和AidlGetServiceData两个接口,这个Stub类将会作为远程Service的回调类---因为他实现了IBinder的接口,因此可以作为Service的onBind()方法的返回值。
publicstaticabstractclassStubextendsandroid.os.Binderimplementscom.yn.aidl.AidlGetServiceData*/2.定义好AIDL接口后,就可以着手远程Service的编写了。//src/com.example.aidl_service.AIDLService.javapackagecom.example.aidl_service;importcom.example.aidl.AidlGetServiceData;importandroid.app.Service;importandroid.content.Intent;importandroid.os.IBinder;importandroid.os.RemoteException;publicclassAIDLServiceextendsService{privateintage;privateStringname;@OverridepublicvoidonCreate(){super.onCreate();this.age=10;this.name="getdatafromServiceusingaidl";}//由于Stub是抽象类,故在这创建一个子类,获取Service的数据,作为onBind()的返回值,携带Service的数据。publicclassAidlGetServiceDataBinderextendsAidlGetServiceData.Stub{@OverridepublicintgetAge()throwsRemoteException{returnage;}@OverridepublicStringgetName()throwsRemoteException{returnname;}}@OverridepublicIBinderonBind(Intentintent){//返回AidlGetServiceDataBinder的实例returnnewAidlGetServiceDataBinder();}}
3.Service类开发完成后,还必须在AndroidMainfest.xml中进行声明:
<applicationandroid:allowBackup="true"android:icon="@drawable/ic_launcher"android:label="@string/app_name"android:theme="@style/AppTheme"><serviceandroid:name="com.example.aidl_service.AIDLService"><intent-filter><actionandroid:name="com.example.aidl.action.AIDL_TEST"/></intent-filter></service></application>
经过以上步骤,远程Service便已经完成了。接下来,可以创建另一个进程来通过AIDL获取到远程Service中的数据。
创建一个android应用程序,在Activity中添加两个Button和两个TextView,分别用来显示从远程Service中读取的数据。
具体做法:
1.创建一个应用程序后,首先将上面定义好的AIDL接口拷贝到工程目录中,同理,ADT工具会自动在gen/com/example/aidl中生成一个AidlGetServiceData.java接口。
2.实例化一个ServiceConnection对象,该对象的onServiceConnected((ComponentName name, IBinder service))方法中的service参数就是远程Service的onBind()方法中的返回值对象的代理,因此,要获取onBind()返回值对象,还需进行如下处理:
privateServiceConnectionconn=newServiceConnection(){@OverridepublicvoidonServiceConnected(ComponentNamename,IBinderservice){aidlService=AidlGetServiceData.Stub.asInterface(service);}@OverridepublicvoidonServiceDisconnected(ComponentNamename){aidlService=null;}};
3.在Activity的onCreate()方法中,启动远程Service。
Intent intent = new Intent("com.example.aidl.action.AIDL_TEST");
bindService(intent, conn, Service.BIND_AUTO_CREATE);
4.经过以上步骤,便得到了远程Service中的onBind()返回值对象,则可由该对象提供的接口获取Service中的数据。
publicvoidonGetAge(Viewview){try{intage=aidlService.getAge();tvAge.setText(age+"");}catch(RemoteExceptione){e.printStackTrace();}}publicvoidonGetName(Viewview){try{Stringname=aidlService.getName();tvName.setText(name);}catch(RemoteExceptione){e.printStackTrace();}}
5.最后,退出程序前,记得解除与Service的绑定。
@OverrideprotectedvoidonDestroy(){super.onDestroy();this.unbindService(conn);}
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。