Android AIDL實現處理序間通訊探索_Android

來源:互聯網
上載者:User

前言: 

     前面總結了程式間共用資料,可以使用ContentProvider也可以使用SharedPreference,那麼進程間怎麼共用記憶體呢?Android系統中的進程之間不能共用記憶體,因此,需要提供一些機制在不同進程之間進行資料通訊。 

     為了使其他的應用程式也可以訪問本應用程式提供的服務,Android系統採用了遠端程序呼叫(Remote Procedure Call,RPC)方式來實現。與很多其他的基於RPC的解決方案一樣,Android使用一種介面定義語言(Interface Definition Language,IDL)來公開服務的介面。我們知道4個Android應用程式組件中的3個(Activity、BroadcastReceiver和ContentProvider)都可以進行跨進程訪問,另外一個Android應用程式組件Service同樣可以。因此,可以將這種可以跨進程訪問的服務稱為AIDL(Android Interface Definition Language)服務。 

接下來實戰一下具體實現: 

 1.)首先建立一個aidl檔案 

interface ITestInterface {   //擷取進程ID  int getProcessId();  //處理字串  String dealString( String srcString);  //字串追加  String appendString( String srcString);  void addPerson(in Person person);  List<Person> getPersons();} 

aidl文法解說:
 •  聲明函數基本和Java一致,可以傳參和傳回值,參數和傳回值
 •  參數和傳回值   Java程式設計語言的基礎資料型別 (Elementary Data Type) (int, long, char, boolean等),String和CharSequence,集合介面類型List和Map、其他AIDL介面類型、實現Parcelable介面的自訂對象
 •  方向指示    在使用aidl傳輸資料時,對於非基礎資料型別 (Elementary Data Type),也不是String和CharSequence類型的,(即Parcelable類型)需要有方向指示,包括in、out和inout。
 •  AIDL只支援介面方法,不能公開static變數。 

2.)服務端實現介面 

  private final ITestInterface.Stub mBinder = new ITestInterface.Stub() {    public int getProcessId(){      Log.e("TestService","TestService Thread: " + Thread.currentThread().getName());      Log.e("TestService","TestService getProcessId()");      return android.os.Process.myPid();    }    //處理字串    public String dealString( String srcString)    {      return srcString+srcString;    }    //字串追加    public String appendString( String srcString)    {      return srcString+srcString;    } 

3.)用戶端擷取介面 

  private ServiceConnection connection = new ServiceConnection() {    @Override    public void onServiceDisconnected(ComponentName name) {      Log.e("TestService","TestService onServiceDisconnected()");    }    @Override    public void onServiceConnected(ComponentName name, IBinder service) {      iTestInterface =  ITestInterface.Stub.asInterface(service);      try {        Log.e("TestService","TestService onServiceConnected()");        int remoteId=iTestInterface.getProcessId();        Log.e("TestService","TestService remoteId---->"+remoteId);        int currentPid = android.os.Process.myPid();        Log.e("TestService","TestService currentPid---->"+currentPid);        Log.e("TestService","TestService dealString---->"+iTestInterface.dealString("Remote Service"));        Log.e("TestService","TestService appendString---->"+iTestInterface.appendString("Remote Service"));      } catch (RemoteException e) {        e.printStackTrace();      }    }  }; 

4.)通過IPC調用/傳遞資料 

        int remoteId=iTestInterface.getProcessId();        Log.e("TestService","TestService remoteId---->"+remoteId);        int currentPid = android.os.Process.myPid();        Log.e("TestService","TestService currentPid---->"+currentPid);        Log.e("TestService","TestService dealString---->"+iTestInterface.dealString("Remote Service"));        Log.e("TestService","TestService appendString---->"+iTestInterface.appendString("Remote Service")); 

5.)Service聲明以及綁定/解除綁定  

聲明: 

    <service      android:name=".TestService"      android:enabled="true"      android:exported="true"      android:label="remoteService"      android:process=":remote">      <intent-filter android:priority="1000">        <category android:name="android.intent.category.DEFAULT" />        <action android:name="com.whoislcj.testaidl.TestService" />      </intent-filter>    </service> 

綁定:               

 Intent intent = new Intent("com.whoislcj.testaidl.TestService"); intent.setPackage(getPackageName());//這裡你需要設定你應用的包名 bindService(intent, connection, Context.BIND_AUTO_CREATE); 

解除綁定:unbindService(connection);

6.)存取權限同Service一致

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.