1).AIDL简介:AIDL(Android Interface Definition Language),即安卓接口定义语言。
AIDL主要是用于进程对远程Service的通信,也就是一个进程采用AIDL可以启动另一个进程的Service,并从该Service中获取数据(通信)。
2).具体做法:
1.首先创建一个AIDL接口代码:
//com.example.aidl.AidlGetServiceData.aidl package com.example.aidl; interface AidlGetServiceData { int getAge(); String getName(); }
/*
注:AIDL定义接口的源代码必须以.aidl结尾。
AIDL接口中用到的数据类型,除了基本类型,String,List,Map,CharSequence之外,其他类型均全部需要导包。
定义好上面的AIDL接口后,ADT工具会自动在gen/com/example/aidl中生成一个AidlGetServiceData.java接口,在该接口里面包含一个Stub内部类,该类实现了IBinder和AidlGetServiceData两个接口,这个Stub类将会作为远程Service的回调类---因为他实现了IBinder的接口,因此可以作为Service的onBind()方法的返回值。
public static abstract class Stub extends android.os.Binder implements com.yn.aidl.AidlGetServiceData */ 2.定义好AIDL接口后,就可以着手远程Service的编写了。 //src/com.example.aidl_service.AIDLService.java package com.example.aidl_service; import com.example.aidl.AidlGetServiceData; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.os.RemoteException; public class AIDLService extends Service { private int age; private String name; @Override public void onCreate() { super.onCreate(); this.age = 10; this.name = "get data from Service using aidl"; } //由于Stub是抽象类,故在这创建一个子类,获取Service的数据,作为onBind()的返回值,携带Service的数据。 public class AidlGetServiceDataBinder extends AidlGetServiceData.Stub { @Override public int getAge() throws RemoteException { return age; } @Override public String getName() throws RemoteException { return name; } } @Override public IBinder onBind(Intent intent) { // 返回AidlGetServiceDataBinder的实例 return new AidlGetServiceDataBinder(); } }
3.Service类开发完成后,还必须在AndroidMainfest.xml中进行声明:
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <service android:name="com.example.aidl_service.AIDLService" > <intent-filter> <action android: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()返回值对象,还需进行如下处理:
private ServiceConnection conn = new ServiceConnection() { @Override public void onServiceConnected(ComponentName name, IBinder service) { aidlService = AidlGetServiceData.Stub.asInterface(service); } @Override public void onServiceDisconnected(ComponentName name) { 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中的数据。
public void onGetAge(View view) { try { int age = aidlService.getAge(); tvAge.setText(age+""); } catch (RemoteException e) { e.printStackTrace(); } } public void onGetName(View view) { try { String name = aidlService.getName(); tvName.setText(name); } catch (RemoteException e) { e.printStackTrace(); } }
5.最后,退出程序前,记得解除与Service的绑定。
@Override protected void onDestroy() { super.onDestroy(); this.unbindService(conn); }