AIDL简介
AIDL即Android IDL,是根据安卓平台的接口界说语言。AIDL的人物便是Android平台下的RPC。RPC是IPC的一个特例,能够跨进程长途拜访。RPC的意图便是能够让程序不必忧虑办法详细是在哪个进程里边或者哪个机器上面,就像正常的本地办法那样去调用即可,RPC机制会处理所有的详细细节。
AIDL供给Android平台的RPC的支持:开发者仅需求要界说AIDL,做一些相关的适配作业,然后就能够运用这些办法了,不必详细关心接口描绘的办法究竟是在同一个进程中仍是在其他的进程中。这些RPC完成的细节由Binder和系统来处理。
AIDL运用:以蓝牙扫描服务为例
项意图Module下新建一个aidl文件,AS会主动为你生成一个包,文件会放在包里边,项目目录如下:
其中,app作为服务器端的Module,而bluetoorhtest作为客户端Module。
服务器端Module:
界说AIDL文件。AIDL其实是一个接口文件,在里边界说相关的接口办法,而不作完成。
// IBlueToothService.aidl
package com.lzy.bluetoothmanager;
// Declare any non-default types here with import statements
import com.lzy.bluetoothmanager.RmBluetoothDevice;
interface IBlueToothService {
List<RmBluetoothDevice> getDevices();
}
这儿注意传入参数的一些要点:
-
in表示从客户端传入,out表示从服务器传出,inout表示双向通信,即从客户端传入,并从服务器修正再传回。
-
默认能够传入基本数据类型的参数,如果需求特别参数,阐明如下:
1、传入对象类型,对象需求完成Parcelable接口,并在AIDL作如下界说,而且客户端和服务器端的module都要有一份内容彻底相同的Model类副本。
2、能够传入调集类型,如List,map等。
// RmBluetoothDevice.aidl
package com.lzy.bluetoothmanager;
parcelable RmBluetoothDevice;
在AS中Build服务器module。会生成对应的 Java 文件,一般不做修正,可查看其生成的Stub抽象类,该类承继于Binder,因此,预示着我们需求运用Service去做完成。
/*
* This file is auto-generated. DO NOT MODIFY.
* Original file: C:\\Development\\Android\\projects-as\\BlueToothManager\\app\\src\\main\\aidl\\com\\lzy\\bluetoothmanager\\IBlueToothService.aidl
*/
package com.lzy.bluetoothmanager;
public interface IBlueToothService extends android.os.IInterface
{
/** Local-side IPC implementation stub class. */
public static abstract class Stub extends android.os.Binder implements com.lzy.bluetoothmanager.IBlueToothService
{
private static final java.lang.String DESCRIPTOR = "com.lzy.bluetoothmanager.IBlueToothService";
/** Construct the stub at attach it to the interface. */
public Stub()
{
this.attachInterface(this, DESCRIPTOR);
}
/**
* Cast an IBinder object into an com.lzy.bluetoothmanager.IBlueToothService interface,
* generating a proxy if needed.
*/
public static com.lzy.bluetoothmanager.IBlueToothService asInterface(android.os.IBinder obj)
{
...
}
...
}
新建一个Service类,界说内部类,完成AIDL的stub接口,并在onBinder办法中返回。
/**
* 蓝牙长途AIDL调用接口
*/
private class BlueToothAIDLBinder extends IBlueToothService.Stub{
@Override
public List<RmBluetoothDevice> getDevices() {
if(mDiscoveryTask == null){
mDeviceManager.clearAll();
mDiscoveryTask = new BluetoothDiscoveryTask();
mDiscoveryTask.execute();
}
return mDeviceManager.getAvailableDevices();
}
}
在AndroidManifest.xml中注册服务,并界说action。
<service android:name=".Services.BluetoothService">
<intent-filter>
<action android:name="lzy.service.bluetooth"/>
</intent-filter>
</service>
客户端Module:
复制一份服务器端Module的aidl文件到客户端,需求将整个包都复制进去,并确保aidl文件内容一致。然后Build客户端Module,生成对应Stub类的java文件。
在Activity中界说内部类,完成ServiceConnection接口。完成接口中的 onServiceConnected 办法,该办法的第二个参数为IBinder类型,这便是长途服务器返回的Service对象,运用相关办法,将其化为对应aidl接口对象。
/**
* 连接长途蓝牙扫描服务
*/
private class BlueToothRemoteConnection implements ServiceConnection{
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
isBtConnectionAlive = true;
//获取长途传回的服务接口
blueToothAidlBinder = IBlueToothService.Stub.asInterface(service);
Thread btTask = new Thread(){
@Override
public void run() {
// 守时获取蓝牙设备信息
while(isBtConnectionAlive){
try {
Thread.sleep(500);
devices = blueToothAidlBinder.getDevices();
EventBusUtil.post(BlueToothConstant.EVENT_DEVICES_DESCOVERYING, null);
} catch (Exception e) {
e.printStackTrace();
}
}
}
};
btTask.start();
}
@Override
public void onServiceDisconnected(ComponentName name) {
unbindService(btConnection);
isBtConnectionAlive = false;
}
}
最终运用Intent,绑定到指定action的Service。这样就完成了IPC通信。
/**
* 长途连接蓝牙服务器
*/
public void toConnectServer(){
Intent intent = new Intent();
intent.setAction(BlueToothConstant.BLUETOOTH_SERVICE_ACTION);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
// Android 5.0 之后必须设置组件
PackageManager pm = getApplication().getPackageManager();
List<ResolveInfo> resolveInfo = pm.queryIntentServices(intent, 0);
if (resolveInfo != null && resolveInfo.size() == 1) {
ResolveInfo serviceInfo = resolveInfo.get(0);
String packageName = serviceInfo.serviceInfo.packageName;
String className = serviceInfo.serviceInfo.name;
Intent componentIntent = new Intent(intent);
componentIntent.setComponent(new ComponentName(packageName, className));
bindService(componentIntent, btConnection, BIND_AUTO_CREATE);
} else {
Log.e(TAG, "BluetoothService is not installed.");
}
} else {
bindService(intent, btConnection, BIND_AUTO_CREATE);
}
}
**注意:**Android 5.0之后隐式声明Intent发动Service引发一些问题,会抛出反常,要求显式调用,但是不符合实际。因此,在Intent中运用Component来解决问题。
能够专门为此编写一个东西类办法,如下:
public static Intent createExplicitFromImplicitIntent(Context context, Intent implicitIntent) {
// Retrieve all services that can match the given intent
PackageManager pm = context.getPackageManager();
List<ResolveInfo> resolveInfo = pm.queryIntentServices(implicitIntent, 0);
// Make sure only one match was found
if (resolveInfo == null || resolveInfo.size() != 1) {
return null;
}
// Get component info and create ComponentName
ResolveInfo serviceInfo = resolveInfo.get(0);
String packageName = serviceInfo.serviceInfo.packageName;
String className = serviceInfo.serviceInfo.name;
ComponentName component = new ComponentName(packageName, className);
// Create a new intent. Use the old one for extras and such reuse
Intent explicitIntent = new Intent(implicitIntent);
// Set the component to be explicit
explicitIntent.setComponent(component);
return explicitIntent;
}
源代码
本Demo源码彻底开源,完成AIDL简易蓝牙扫描功用,有学习兴趣的能够下载参考
Github链接:github.com/Miracle287/…