AIDL基本知识点
定义: Android 接口定义语言。
作用:不同应用的客户端通过 IPC 方式访问服务,并且希望在服务中进行多线程处理时,您才有必要使用 AIDL
操作步骤
第一步:创建 aidl 文件
第二步:定义接口
package com.wust.aidltestdemo;
interface AidlTestAction {
void firstAidlTest();
}
第三步:构建项目
原因:因为 aidl 文件所写的接口是由编辑器在编译我们的项目时自动帮我们生成的接口,所以,我们想要引用,那必须得先构建项目。
第四步:编写服务 引用我们编写的 aidl 接口
在这里,我先给大家演示 aidl 接口 在自己内部应用中的使用,但这并不是他的核心任务!!!
- 编写接口实现类
package com.wust.aidltestdemo;
import android.os.RemoteException;
import android.util.Log;
/**
* ClassName: AidlTestActionImpl <br/>
* Description: <br/>
* date: 2021/10/25 21:58<br/>
*
* @author yiqi<br />
* @QQ 1820762465
* @微信 yiqiideallife
* @技术交流QQ群 928023749
*/
public class AidlTestActionImpl extends AidlTestAction.Stub {
private String TAG = "AidlTestActionImpl";
@Override
public void firstAidlTest() {
Log.d(TAG, "firstAidlTest is executed");
}
}
我们可以看到 AidlTestAction.Stub 类继承自 android.os.Binder,也就是说,我们这个实现类继承自 AidlTestAction.Stub 后就可以 在服务类的 onBinder() 方法中返回
- 编写服务类
package com.wust.aidltestdemo;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;
import androidx.annotation.Nullable;
/**
* ClassName: AidlService <br/>
* Description: <br/>
* date: 2021/10/25 21:56<br/>
*
* @author yiqi<br />
* @QQ 1820762465
* @微信 yiqiideallife
* @技术交流QQ群 928023749
*/
public class AidlService extends Service {
@Nullable
@Override
public IBinder onBind(Intent intent) {
return new AidlTestActionImpl();
}
}
- 绑定服务
在清单文件中声明
<service android:name=".AidlService" />
绑定服务逻辑编写
package com.wust.aidltestdemo;
import androidx.appcompat.app.AppCompatActivity;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import android.view.View;
public class MainActivity extends AppCompatActivity {
private MyServiceConnect myServiceConnect;
private boolean isBind;
private AidlTestAction mAidlTestAction;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Intent intent = new Intent(this, AidlService.class);
myServiceConnect = new MyServiceConnect();
isBind = bindService(intent, myServiceConnect, BIND_AUTO_CREATE);
}
private class MyServiceConnect implements ServiceConnection {
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
//这里你也可以写
// AidlTestActionImpl aidlTestAction = (AidlTestActionImpl) service;
mAidlTestAction = AidlTestAction.Stub.asInterface(service);
}
@Override
public void onServiceDisconnected(ComponentName name) {
}
}
public void test(View view) {
try {
mAidlTestAction.firstAidlTest();
} catch (RemoteException e) {
e.printStackTrace();
}
}
@Override
protected void onDestroy() {
super.onDestroy();
if (myServiceConnect != null && isBind) {
unbindService(myServiceConnect);
isBind = false;
}
}
}
布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="AIDL 测试"
android:onClick="test"/>
</LinearLayout>
第五步:运行结果展示