Android AIDL 使用樣本

來源:互聯網
上載者:User

標籤:android   style   blog   class   code   java   

介紹:

AIDL 即   Android Interface Definition Language

使用:

1.建立.aidl檔案

1 //AIDL 檔案所在的包2 package com.houny.demo_aidl.aidl;3 4 //介面名必須和AIDL檔案名稱一致5 interface ISay{6     boolean Say();7     boolean SayInt(int i);8     boolean SayString(String str);9 }

2.建立Service,並在Mainfirst.xml裡註冊

 1 public class BackgroundService extends Service{ 2  3      /** 4      * 通過這種方式實現AIDL裡定義的介面 5      */ 6      ISay.Stub say = new ISay.Stub() { 7            8           //實現介面的方法 9          // ...10           11      };12      13 14      @Override15      public IBinder onBind(Intent intent) {16           //把那個介面對象返回出去17           return say;18      }19 20      //...21 }
1  <service android:name=".service.BackgroundService"/>

3.在Activity或Fragment裡綁定Service

 1     private void initAIDL() { 2         //初始化ServiceConnection,並實現回調方法 3         serviceConnection= new ServiceConnection() { 4              5             @Override 6             public void onServiceDisconnected(ComponentName name) { 7                 say = null; 8             } 9             10             @Override11             public void onServiceConnected(ComponentName name, IBinder service) {12                 //當Service綁定成功後會通過回調執行這個方法13                 say = ISay.Stub.asInterface(service);14             }15         };16     }
    private void startService() {        Intent intent = new Intent(MainActivity.this, BackgroundService.class);        this.bindService(intent, serviceConnection, Context.BIND_AUTO_CREATE);        this.startService(intent);    }

4.使用介面定義的方法

try {    say.SayString("Hello");} catch (Exception e) {    e.printStackTrace();}

5.進階使用請參考 這個博文  @Copyright liuhe688

 

我介紹的這個基本使用樣本的代碼等我知道怎麼上傳附件的時候再上傳吧

-------------------------------------------------------------------------

Change 2014-5-5 15:55:34  上傳附件   點擊下載

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.