一、问题描述
android应用程序的四大组件中activity、broadcastreceiver、contentprovider、service都可以进行跨进程。在上一篇我们通过contentprovider实现了不同应用之间的跨进程调用,但contentprovider主要是提供数据的共享(如sqlite数据库),那么我们希望跨进程调用服务(service)呢?android系统采用了远程过程调用(rpc)方式来实现。与很多其他的基于rpc的解决方案一样,android使用一种接口定义语言(interface definition language,idl)来公开服务的接口。对于service的跨进程调用需要通过aidl来实现,aidl服务应用非常广泛,如百度地图api中,就提供跨进程的服务,下面我们就看看如何实现aidl service ,案例如图:
二、实现aidl服务的步骤
1. 编写aidl文件
2. 如果aidl文件的内容是正确的,会自动生成一个java接口文件(*.java)。
3. 建立一个服务类(service的子类)。
4. 实现由aidl文件生成的java接口。
5. 在androidmanifest.xml文件中配置aidl服务, 添加<action>标签的android:name,以便客户端使用隐式intent启动服务
6、客户端
三、编写aidl文件
android接口定义语言——localservice.aidl
1
2
3
4
|
package com.jereh.remote;
interface localservice{
string getlocal();
}
|
ide会自动生成localservice.java 文件 如图所示:
四、remote应用实现
1、编写myremoteservice
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
public class myremoteservice extends service {
@override
public ibinder onbind(intent arg0) {
// todo auto-generated method stub
return new myremoteserviceimpl();
}
private class myremoteserviceimpl extends localservice.stub{
@override
public string getlocal() throws remoteexception {
// todo auto-generated method stub
return "烟台杰瑞教育" ;
}
}
}
|
2、androidmanifest.xml配置
1
2
3
4
5
6
7
|
<service android:name= "com.jereh.retmote.myremoteservice"
android:process= "remote"
>
<intent-filter>
<action android:name= "com.jereh.remote_service" />
</intent-filter>
</service>
|
五、客户端实现
1、在客户端应用中添加localservice.aidl
注意包名要与文件的在服务端定义的包名相同。如图所示:
同样会自动生成localservice.java 代码
2、mainactivity代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
public class mainactivity extends activity {
@override
protected void oncreate(bundle savedinstancestate) {
super .oncreate(savedinstancestate);
setcontentview(r.layout.activity_main);
}
public void startservice(view view){
intent service= new intent( "com.jereh.remote_service" );
super .bindservice(service, conn, context.bind_auto_create);
}
public void showinfo(view view){
try {
local=service.getlocal();
log.d( "jereh" , local);
toast.maketext( this ,
"您已进入" +local,toast.length_long).show();
} catch (remoteexception e) {
// todo auto-generated catch block
e.printstacktrace();
}
}
private localservice service;
private string local;
private serviceconnection conn= new serviceconnection() {
@override
public void onservicedisconnected(componentname arg0) {
}
@override
public void onserviceconnected(componentname name, ibinder binder) {
// todo auto-generated method stub
// 获取远程service的onbinder方法返回的对象代理
service=localservice.stub.asinterface(binder);
}
};
@override
public boolean oncreateoptionsmenu(menu menu) {
// inflate the menu; this adds items to the action bar if it is present.
getmenuinflater().inflate(r.menu.main, menu);
return true ;
}
}
|
xml文件:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<linearlayout xmlns:android= "http://schemas.android.com/apk/res/android"
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= "启动远程服务" android:onclick= "startservice" />
<button
android:layout_width= "match_parent"
android:layout_height= "wrap_content"
android:text= "查看信息" android:onclick= "showinfo" />
</linearlayout>
|
以上所述就是本文给大家介绍的android应用程序四大组件之使用aidl如何实现跨进程调用service,希望大家喜欢。