Android系统中,各应用程序都运行在自己的进程中,进程之间一般无法进行数据交换。
Android调用Service先定义一个远程调用接口,然后为该接口提供一个实现类。

Android访问Service时,不是直接返回Service对象给客户端——Service只是将一个回调对象(IBinder对象)通过onBind()方法返回给客户端。因此Android的AIDL远程接口的实现类就是那个IBinder实现类。

与绑定本地Service不同的是,本地Service的onBind()方法会直接把Service对象本身传给可uhuduandeServiceConnection的onServiceConnected方法的第二个参数。而远程Service的onBind()方法只是将IBinder对象的代理传给客户端的ServiceConnection的onServiceConnected方法的第二个参数。
当客户端获取远程Service的IBinder的对象的代理之后,接下来就可以通过该IBinder对象去回调远程Service的属性或方法了。
Android用AIDL(Android Interface Definition Language)来定义远程接口。
AIDL这种接口定义语言不是一种真正的编程语言,它只是定义两个进程间的通信接口。
AIDL定义接口的源代码必须以.aidl结尾。
AIDL接口中用到数据类型,除了基本类型、String、List、Map、CharSequence之外,其他类型都需要导入包,即使它们在同一个包中也需要导包。

定义一个.aidl文件

File->New->File,然后输入文件存放的路径,和文件名(比如Itest.aidl).然后在弹出的文件编辑界面输入包名和一个接口定义,保存好就可以了

ICat.aidl

package WangLi.Service.AidlService;interface ICat{    String getColor();    double getWeight();}
创建完毕后,eclipse会自动在gen文件夹下创建ICat.java

每个根据.aidl文件自动生成接口中(上面的ICat)中都会包含一个静态类stub.

下面的代码就是在gen文件夹下跟据.aidl自动生成的

package WangLi.Service.AidlService;public interface ICat extends android.os.IInterface {/** Local-side IPC implementation stub class. */public static abstract class Stub extends android.os.Binder implementsWangLi.Service.AidlService.ICat {private static final java.lang.String DESCRIPTOR = "WangLi.Service.AidlService.ICat";/** Construct the stub at attach it to the interface. */public Stub() {this.attachInterface(this, DESCRIPTOR);}/** * Cast an IBinder object into an WangLi.Service.AidlService.ICat * interface, generating a proxy if needed. */public static WangLi.Service.AidlService.ICat asInterface(android.os.IBinder obj) {if ((obj == null)) {return null;}android.os.IInterface iin = (android.os.IInterface) obj.queryLocalInterface(DESCRIPTOR);if (((iin != null) && (iin instanceof WangLi.Service.AidlService.ICat))) {return ((WangLi.Service.AidlService.ICat) iin);}return new WangLi.Service.AidlService.ICat.Stub.Proxy(obj);}......

WangLi.Service.AidlService.ICat asInterface()这个方法回返回一个Binder代理对象

下面定义一个Service,已实现上面的AIDL接口,该Service的onBinde()方法所返回的IBinder对象应该是ADT所生成的ICat.Stub的子类的实例,其它部分则与开发本地Service完全一样.

package WangLi.Service.AidlService;import java.util.Timer;import java.util.TimerTask;import WangLi.Service.AidlService.ICat.Stub;import android.app.Service;import android.content.Intent;import android.os.IBinder;import android.os.RemoteException;public class AidlService extends Service {private CatBinder catBinder;Timer timer = new Timer();String[] colors = new String[] { "红色", "黄色", "黑色" };double[] weights = new double[] { 2.3, 3.1, 1.58 };private String color;private double weight;// 继承Stub,也就是实现了ICat接口,并实现了IBinder接口 public class CatBinder extends Stub {@Overridepublic String getColor() throws RemoteException {return color;}@Overridepublic double getWeight() throws RemoteException {return weight;}}@Overridepublic void onCreate() {super.onCreate();catBinder = new CatBinder();timer.schedule(new TimerTask() {@Overridepublic void run() {// 随机改变Service组件内color,weight属性的值int rand = (int) (Math.random() * 3);color = colors[rand];weight = weights[rand];System.out.println("--------" + rand);}}, 0, 800);}@Overridepublic IBinder onBind(Intent arg0) {/* * 返回catBinder对象在绑定本地Service的情况下, * 该catBinder对象会直接传给客户端的ServiceConnection对象的 onServiceConnected方法的第二个参数; * 在绑定远程Service的情况下,只将catBinder对象的代理传给客户端的 * ServiceConnection对象的onServiceConnected方法的第二个参数 */return catBinder;}@Overridepublic void onDestroy() {timer.cancel();}}

上面的项目由于没有Activity,没有任何界面,所以在程序列表中看不到这个应用.

定义后这个Service后,别忘了在AndroidManifest.xml文件中增加它的配置

        <service android:name=".AidlService">            <intent-filter>                <action android:name="WangLi.Service.Aidl_Service"></action>            </intent-filter>        </service>

下面定义一个客户端项目来访问这个Service


package WangLi.Service.AidlClient;import WangLi.Service.AidlService.ICat;import android.app.Activity;import android.app.Service;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;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;public class AidlClient extends Activity{private ICat catService;private Button get;EditText color, weight;private ServiceConnection conn = new ServiceConnection(){@Overridepublic void onServiceConnected(ComponentName name, IBinder service){// 获取远程Service的onBind方法返回的对象的代理catService = ICat.Stub.asInterface(service);}@Overridepublic void onServiceDisconnected(ComponentName name){catService = null;}};@Overridepublic void onCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);setContentView(R.layout.main);get = (Button) findViewById(R.id.get);color = (EditText) findViewById(R.id.color);weight = (EditText) findViewById(R.id.weight);// 创建所需绑定服务的IntentIntent intent = new Intent();intent.setAction("WangLi.Service.Aidl_Service");// 绑定远程服务bindService(intent, conn, Service.BIND_AUTO_CREATE);get.setOnClickListener(new OnClickListener(){@Overridepublic void onClick(View arg0){try{// 获取、并显示远程Service的状态color.setText(catService.getColor());weight.setText(catService.getWeight() + "");}catch (RemoteException e){e.printStackTrace();}}});}@Overridepublic void onDestroy(){super.onDestroy();// 解除绑定this.unbindService(conn);}}


要注意这个方法:

// 获取远程Service的onBind方法返回的对象的代理
catService = ICat.Stub.asInterface(service);



更多相关文章

  1. 浅谈Java中Collections.sort对List排序的两种方法
  2. 类和 Json对象
  3. Python list sort方法的具体使用
  4. python list.sort()根据多个关键字排序的方法实现
  5. Android高性能编程(1)--基础篇
  6. webapp打包为Android的apk包的一种方法
  7. JS调用Android里面的方法,Android调用JS里面的方法
  8. 【原创】Android锁定横竖屏、splash,全屏、去除标题的方法
  9. WebView与Javascript交互(相互调用参数、传值)

随机推荐

  1. 安卓+servlet+MySql 查询+插入(汉字乱
  2. PostreSQL崩溃试验全记录
  3. 基于Sqlcipher和GreenDao的数据库加密
  4. MySQL延迟关联性能优化方法
  5. Maven + Struts2 + JasperReport + MSSQL
  6. 有没有办法在SQL中将每个值作为一行返回
  7. 如何将图像加载到PictureBox;基于存储在D
  8. MySQL字段名与保留字冲突
  9. sqlserver2008r2查找非中文字母数字出现
  10. 如果有相同的记录,我增加数值,如果没有,则插