編輯:關於Android編程
本文實例講述了Android編程實現AIDL(跨進程通信)的方法。分享給大家供大家參考,具體如下:
一. 概述:
跨進程通信(AIDL),主要實現進程(應用)間數據共享功能。
二. 實現流程:
1. 服務器端實現:
(1)目錄結構,如下圖:
(2)實現*.aidl文件:
A. IAIDLService.aidl實現:
package com.focus.aidl; import com.focus.aidl.Person; interface IAIDLService { String getName(); Person getPerson(); }
B. Person.aidl實現:
parcelable Person;
(3)進程間傳遞對象必需實現Parcelable或Serializable接口,下面是被傳遞的Person對象實現:
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)實現IAIDLService.aidl文件中定義的接口,並定義Service,在Service被bind時返回此實現類:
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:
<service android:name = ".AIDLServiceImpl" android:process = ":remote"> <intent-filter> <action android:name = "com.focus.aidl.IAIDLService" /> </intent-filter> </service>
2. 客戶端實現:
(1)目錄結構,如下圖:
(2)將服務器端的IAIDLService.aidl,Person.aidl和Person.Java文件拷貝到本工程中,如上圖所示:
(3)res/layout/main.xml實現:
<?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實現,從服務器端獲取數據在客戶端顯示:
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(); } } }); } }
更多關於Android相關內容感興趣的讀者可查看本站專題:《Android數據庫操作技巧總結》、《Android編程之activity操作技巧總結》、《Android文件操作技巧匯總》、《Android編程開發之SD卡操作方法匯總》、《Android開發入門與進階教程》、《Android資源操作技巧匯總》、《Android視圖View技巧總結》及《Android控件用法總結》
希望本文所述對大家Android程序設計有所幫助。
平時對牛逼動畫,高級UI,都深入的不多!近日,某頭條,推了一個android技術類視頻(平時在頭條關注技術比較多),講的是加載動畫效果,是動腦學院講的公開課,160分鐘,
Activity 的生命周期。一、理解ActivityActivity是Android程序的4大組件之一。Activity是Android程序的表示層。程序的每一個顯示屏
本文實例講述了Android canvas畫圖操作之切割畫布實現方法。分享給大家供大家參考,具體如下:android切割畫布的歷程不算很難,可是理解起來也比較麻煩,這裡寫
在最近的項目中,需求是用戶選擇某個地址需要進行導航時,彈出百度地圖、高德地圖和騰訊地圖讓用戶選擇。如果該用戶手機中已安裝對應的地圖App,則啟動對應軟件進行導航,否則跳轉