Android編程實(shí)現(xiàn)AIDL(跨進(jìn)程通信)的方法詳解
本文實(shí)例講述了Android編程實(shí)現(xiàn)AIDL(跨進(jìn)程通信)的方法。分享給大家供大家參考,具體如下:
一. 概述:
跨進(jìn)程通信(AIDL),主要實(shí)現(xiàn)進(jìn)程(應(yīng)用)間數(shù)據(jù)共享功能。
二. 實(shí)現(xiàn)流程:
1. 服務(wù)器端實(shí)現(xiàn):
(1)目錄結(jié)構(gòu),如下圖:

(2)實(shí)現(xiàn)*.aidl文件:
A. IAIDLService.aidl實(shí)現(xiàn):
package com.focus.aidl;
import com.focus.aidl.Person;
interface IAIDLService {
String getName();
Person getPerson();
}
B. Person.aidl實(shí)現(xiàn):
parcelable Person;
(3)進(jìn)程間傳遞對象必需實(shí)現(xiàn)Parcelable或Serializable接口,下面是被傳遞的Person對象實(shí)現(xiàn):
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<Person> CREATOR = new Creator<Person>() {
public Person[] newArray(int size) {
return new Person[size];
}
public Person createFromParcel(Parcel source) {
return new Person(source);
}
};
}
(4)實(shí)現(xiàn)IAIDLService.aidl文件中定義的接口,并定義Service,在Service被bind時返回此實(shí)現(xiàn)類:
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文件中定義的接口實(shí)現(xiàn)。
*/
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:
<service android:name = ".AIDLServiceImpl" android:process = ":remote">
<intent-filter>
<action android:name = "com.focus.aidl.IAIDLService" />
</intent-filter>
</service>
2. 客戶端實(shí)現(xiàn):
(1)目錄結(jié)構(gòu),如下圖:

(2)將服務(wù)器端的IAIDLService.aidl,Person.aidl和Person.Java文件拷貝到本工程中,如上圖所示:
(3)res/layout/main.xml實(shí)現(xiàn):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
android:orientation = "vertical"
android:layout_width = "fill_parent"
android:layout_height = "fill_parent"
>
<TextView
android:id = "@+id/name"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
/>
<Button
android:id = "@+id/connection"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:text = "連接"
/>
<Button
android:id = "@+id/message"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:enabled = "false"
android:text = "信息"
/>
<Button
android:id = "@+id/person"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:enabled = "false"
android:text = "人"
/>
</LinearLayout>
(4)主Activity實(shí)現(xiàn),從服務(wù)器端獲取數(shù)據(jù)在客戶端顯示:
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;
/**
* 第一步,創(chuàng)建ServiceConnection對象,在onServiceConnected()方法中獲取IAIDLService實(shí)現(xiàn)。
*/
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服務(wù)器端創(chuàng)建的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) {
/**
* 第三步,從服務(wù)器端獲取字符串。
*/
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) {
/**
* 第四步,從服務(wù)器端獲取Person對象。
*/
try {
Person mPerson = mAIDLService.getPerson();
mName.setText("姓名:" + mPerson.getName() + ", 年齡:" + mPerson.getAge());
} catch (RemoteException e) {
e.printStackTrace();
}
}
});
}
}
更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android數(shù)據(jù)庫操作技巧總結(jié)》、《Android編程之a(chǎn)ctivity操作技巧總結(jié)》、《Android文件操作技巧匯總》、《Android編程開發(fā)之SD卡操作方法匯總》、《Android開發(fā)入門與進(jìn)階教程》、《Android資源操作技巧匯總》、《Android視圖View技巧總結(jié)》及《Android控件用法總結(jié)》
希望本文所述對大家Android程序設(shè)計有所幫助。
- 詳解Android跨進(jìn)程通信之AIDL
- Android實(shí)現(xiàn)跨進(jìn)程接口回掉的方法
- Android AIDL實(shí)現(xiàn)兩個APP間的跨進(jìn)程通信實(shí)例
- android使用AIDL跨進(jìn)程通信(IPC)
- 詳解Android跨進(jìn)程IPC通信AIDL機(jī)制原理
- Android AIDL實(shí)現(xiàn)跨進(jìn)程通信的示例代碼
- Android 跨進(jìn)程SharedPreferences異常詳解
- Android 跨進(jìn)程通Messenger(簡單易懂)
- Android應(yīng)用程序四大組件之使用AIDL如何實(shí)現(xiàn)跨進(jìn)程調(diào)用Service
- 分析CmProcess跨進(jìn)程通信的實(shí)現(xiàn)
相關(guān)文章
RecylerView實(shí)現(xiàn)流布局StaggeredGridLayoutManager使用詳解
這篇文章主要為大家詳細(xì)介紹了RecylerView實(shí)現(xiàn)流布局StaggeredGridLayoutManager使用,具有一定的參考價值,感興趣的小伙伴們可以參考一下2018-09-09
Android自動獲取輸入短信驗(yàn)證碼庫AutoVerifyCode詳解
這篇文章主要為大家詳細(xì)介紹了Android自動獲取輸入短信驗(yàn)證碼庫,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-07-07
android中圖片加載到內(nèi)存的實(shí)例代碼
這篇文章主要介紹了android中圖片加載到內(nèi)存的相關(guān)資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2016-09-09
Android中imageview.ScaleType使用方法詳細(xì)介紹
這篇文章主要介紹了Android中imageview.ScaleType使用方法詳細(xì)介紹的相關(guān)資料,需要的朋友可以參考下2017-06-06
Android編程判斷網(wǎng)絡(luò)連接是否可用的方法
這篇文章主要介紹了Android編程判斷網(wǎng)絡(luò)連接是否可用的方法,實(shí)例分析了Android判定網(wǎng)絡(luò)連接的相關(guān)技巧與實(shí)現(xiàn)步驟,需要的朋友可以參考下2015-12-12

