AIDL(Android Interface Definition Language)是Android系统自定义的接口描述语言。可以用来实现进程间的通讯。
如何生成AIDL
通过file->new->aidl,来生成像对应的.aidl对应的文件,本文要实现两个不同的app通信。要想实现两个app的通信,那么就要实现app同样的接口。要完全一样,什么意思呢?里面的代码要完全一样。
- 客户端:ITestAIDL.aidl文件
package iflytek.com.clientcode;interface ITestAIDL {void addBook(in String book);List<String> getBookList();
}
- 服务端&#xff1a;ITestAIDL.aidl文件
package iflytek.com.clientcode; interface ITestAIDL {void addBook(in String book);List<String> getBookList();
}
两者的代码也要完全一摸一样&#xff0c;包括package &#xff0c;若是package不一样&#xff0c;会报错&#xff0c;可以通过新建包名的方式来实现package一样。如下图&#xff1a;左边时服务端&#xff0c;右边客户端
若两端的代码不一致&#xff0c;会出现下面的错误&#xff1a;
Binder invocation to an incorrect interface
AIDL 支持下列数据类型&#xff1a;
- Java 编程语言中的所有原语类型&#xff08;如 int、long、char、boolean 等等&#xff09;
- String
- CharSequence
- List
- List 中的所有元素都必须是以上列表中支持的数据类型、其他 AIDL 生成的接口或您声明的可打包类型。 可选择将 List 用作“通用”类&#xff08;例如&#xff0c;List&#xff09;。另一端实际接收的具体类始终是 ArrayList&#xff0c;但生成的方法使用的是 List 接口。
- Map
Map 中的所有元素都必须是以上列表中支持的数据类型、其他 AIDL 生成的接口或您声明的可打包类型。 不支持通用 Map&#xff08;如 Map 形式的 Map&#xff09;。 另一端实际接收的具体类始终是 HashMap&#xff0c;但生成的方法使用的是 Map 接口。
这些数据类型可能无法满足我们的要求&#xff0c;我们需要出书更复杂的数据&#xff0c;如何定义这些数据呢&#xff1f;需要两步&#xff1a;
1.在对应的package路径下model&#xff0c;这个model就是我服务端和客户端要传输的数据&#xff0c;并继承Parcelable&#xff0c;如下&#xff1a;
package iflytek.com.clientcode;import android.os.Parcel;
import android.os.Parcelable;public class Book implements Parcelable {private String name;public String getName() {return name;}public void setName(String name) {this.name &#61; name;}public Book(String name) {this.name &#61; name;}protected Book(Parcel in) {}public static final Creator<Book> CREATOR &#61; new Creator<Book>() {&#64;Overridepublic Book createFromParcel(Parcel in) {return new Book(in);}&#64;Overridepublic Book[] newArray(int size) {return new Book[size];}};&#64;Overridepublic int describeContents() {return 0;}&#64;Overridepublic void writeToParcel(Parcel dest, int flags) {}
}
2.这是需要重新定义一个aidl&#xff0c;名字为IBookAIDL.aidl&#xff0c;删除里面的数据&#xff0c;处理package那行&#xff0c;如下图
package iflytek.com.clientcode;parcelable Book;
实现
客服端代码
public class MainActivity extends AppCompatActivity {private ITestAIDL iTestAIDL;private boolean connected;private List<String> bookList;&#64;Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);bindService();setContentView(R.layout.activity_main);TextView textView &#61; findViewById(R.id.hello_world);textView.setOnClickListener(new View.OnClickListener() {&#64;Overridepublic void onClick(View v) {try {iTestAIDL.addBook("书籍");} catch (RemoteException e) {e.printStackTrace();}}});}private ServiceConnection connection &#61; new ServiceConnection() {&#64;Overridepublic void onServiceConnected(ComponentName name, IBinder service) {iTestAIDL &#61; ITestAIDL.Stub.asInterface(service);connected &#61; true;Toast.makeText(getApplicationContext(), "绑定成功!&#43;true", Toast.LENGTH_SHORT).show();}&#64;Overridepublic void onServiceDisconnected(ComponentName name) {connected &#61; false;Toast.makeText(getApplicationContext(), "绑定成功!&#43;false" &#43; name, Toast.LENGTH_SHORT).show();Log.i("haochen", name &#43; "被杀死");bindService();}};
服务端代码&#xff1a;
public class MyService extends Service {private List<String> books;&#64;Nullable&#64;Overridepublic IBinder onBind(Intent intent) {books &#61; new ArrayList<>();return iBinder;}private IBinder iBinder &#61; new ITestAIDL.Stub() {&#64;Overridepublic void addBook(String book) throws RemoteException {books.add(book);Log.i("haochen", "msg" &#43; book);}&#64;Overridepublic List<String> getBookList() throws RemoteException {Toast.makeText(getApplicationContext(), "server get", Toast.LENGTH_SHORT).show();return books;}};&#64;Overridepublic boolean onUnbind(Intent intent) {return super.onUnbind(intent);}
}
值得注意是再生成服务端和客户端的aidl文件时&#xff0c;代码要完全一样&#xff0c;包的路径也要完全一样&#xff0c;否则会包上面的错误。
githubDemo代码