Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 609|回复: 0

开发交流:Android中AIDL实现(跨进程通信)

[复制链接]

该用户从未签到

发表于 2011-10-24 10:42:34 | 显示全部楼层 |阅读模式
一. 概述:
跨进程通信(AIDL),主要实现进程(应用)间数据共享功能。
二. 实现流程:
1. 服务器端实现:
(1)目录结构,如下图:
  

(2)实现*.aidl文件:
A. IAIDLService.aidl实现:
view plaincopy to clipboardprint?

package com.focus.aidl;



import com.focus.aidl.Person;



interface IAIDLService {



String getName();



Person getPerson();



}
复制代码
B. Person.aidl实现:
view plaincopy to clipboardprint?
parcelable Person;
(3)进程间传递对象必需实现Parcelable或Serializable接口,下面是被传递的Person对象实现:
view plaincopy to clipboardprint?

package com.focus.aidl;



import android.os.Parcel;

import android.os.Parcelable;



public class Person implements Parcelable {



private String name;



private int age;



public Person() {



}



public Person(Parcel source) {

name = source.readString();

age = source.readInt();

}



public String getName() {

return name;

}



public void setName(String name) {

this.name = name;

}



public int getAge() {

return age;

}



public void setAge(int age) {

this.age = age;

}



public int describeContents() {

return 0;

}



public void writeToParcel(Parcel dest, int flags) {

dest.writeString(name);

dest.writeInt(age);

}



public static final Parcelable.Creator CREATOR = new Creator() {

public Person[] newArray(int size) {

return new Person[size];

}



public Person createFromParcel(Parcel source) {

return new Person(source);

}

};



}
复制代码(4)实现IAIDLService.aidl文件中定义的接口,并定义Service,在Service被bind时返回此实现类: view plaincopy to clipboardprint?

package com.focus.aidl;



import com.focus.aidl.IAIDLService.Stub;



import android.app.Service;

import android.content.Intent;

import android.os.IBinder;

import android.os.RemoteException;



public class AIDLServiceImpl extends Service {



@Override

public IBinder onBind(Intent intent) {

return mBinder;

}



/**

* 在AIDL文件中定义的接口实现。

*/

private IAIDLService.Stub mBinder = new Stub() {



public String getName() throws RemoteException {

return “mayingcai”;

}



public Person getPerson() throws RemoteException {

Person mPerson = new Person();



mPerson.setName(“mayingcai”);

mPerson.setAge(24);



return mPerson;

}



};



}
复制代码
(5)在AndroidManifest.xml文件中注册Service:
view plaincopy to clipboardprint?




2. 客户端实现:
(1)目录结构,如下图:
  

(2)将服务器端的IAIDLService.aidl,Person.aidl和Person.java文件拷贝到本工程中,如上图所示:
(3)res/layout/main.xml实现:
view plaincopy to clipboardprint?

androidrientation = "vertical"

android:layout_width = "fill_parent"

android:layout_height = "fill_parent"

>



android:id = "@+id/name"

android:layout_width = "wrap_content"

android:layout_height = "wrap_content"

/>



android:id = "@+id/connection"

android:layout_width = "wrap_content"

android:layout_height = "wrap_content"

android:text = "连接"

/>



android:id = "@+id/message"

android:layout_width = "wrap_content"

android:layout_height = "wrap_content"

android:enabled = "false"

android:text = "信息"

/>



android:id = "@+id/person"

android:layout_width = "wrap_content"

android:layout_height = "wrap_content"

android:enabled = "false"

android:text = "人"

/>
复制代码(4)主Activity实现,从服务器端获取数据在客户端显示: view plaincopy to clipboardprint?

package com.focus.aidl.client;



import android.app.Activity;

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.TextView;



import com.focus.aidl.IAIDLService;

import com.focus.aidl.Person;



public class AIDLClientAcitivty extends Activity {



private IAIDLService mAIDLService;



private TextView mName;



private Button mMessage;



private Button mPerson;



/**

* 第一步,创建ServiceConnection对象,在onServiceConnected()方法中获取IAIDLService实现。

*/

private ServiceConnection mServiceConnection = new ServiceConnection() {



public void onServiceConnected(ComponentName name, IBinder service) {

mAIDLService = IAIDLService.Stub.asInterface(service);



mMessage.setEnabled(true);

mPerson.setEnabled(true);

}



public void onServiceDisconnected(ComponentName name) {

mAIDLService = null;



mMessage.setEnabled(false);

mPerson.setEnabled(false);

}



};



@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);



setContentView(R.layout.main);



mName = (TextView) findViewById(R.id.name);



findViewById(R.id.connection).setOnClickListener(new OnClickListener() {

public void onClick(View view) {



/**

* 第二步,单击”连接”按钮后用mServiceConnection去bind服务器端创建的Service。

*/

Intent service = new Intent(“com.focus.aidl.IAIDLService”);

bindService(service, mServiceConnection, BIND_AUTO_CREATE);



}

});



mMessage = (Button) findViewById(R.id.message);

mMessage.setOnClickListener(new OnClickListener() {

public void onClick(View view) {

/**

* 第三步,从服务器端获取字符串。

*/

try {

mName.setText(mAIDLService.getName());

} catch (RemoteException e) {

e.printStackTrace();

}

}

});



mPerson = (Button) findViewById(R.id.person);

mPerson.setOnClickListener(new OnClickListener() {

public void onClick(View view) {

/**

* 第四步,从服务器端获取Person对象。

*/

try {

Person mPerson = mAIDLService.getPerson();

mName.setText(“姓名:” + mPerson.getName() + “, 年龄:” + mPerson.getAge());

} catch (RemoteException e) {

e.printStackTrace();

}

}

});

}



}
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

GMT+8, 2025-1-11 06:08 , Processed in 0.292985 second(s), 36 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表