AIDL 官方使用介紹

Android Interface Definition Language (AIDL)

AIDL是允許你完成自定義接口荣茫,用于不同進(jìn)程中服務(wù)器和客戶端之間的通訊宣脉。主要是因?yàn)锳ndroid不允許你直接跨進(jìn)程間傳遞消息财喳,所以需要通過AIDL把傳遞的對(duì)象分解包裝為操作系統(tǒng)可以接受的對(duì)象。

當(dāng)你的Service提供跨進(jìn)程通訊,而且在服務(wù)中做多線程處理時(shí)你可以使用AIDL允扇。如果當(dāng)前的Service不準(zhǔn)備提供給其他進(jìn)程服務(wù)端做訪問你只需要在服務(wù)中實(shí)現(xiàn)自定義的binder即可≡虬拢或者你想實(shí)現(xiàn)IPC(進(jìn)程間通訊)考润,Service內(nèi)又不需要做多線程管理,這種情況下你只要使用Messager读处。當(dāng)然要合理選擇哪一種方式的前提是你清楚了解如何綁定一Service糊治;

設(shè)計(jì)AIDL接口時(shí),要知道你在什么情景下才需要調(diào)用你這個(gè)接口

  • 如果只是本地進(jìn)程中調(diào)用這個(gè)接口罚舱,完全沒必要使用AIDL,這時(shí)候只要在服務(wù)中實(shí)現(xiàn)binder即可
  • 提供接口給遠(yuǎn)程進(jìn)程井辜,這時(shí)候可能接受遠(yuǎn)程中不同的線程訪問你的接口,換句話說管闷,你要在你的接口中保證線程的安全
  • The oneway keyword modifies the behavior of remote calls. When used, a remote call does not block; it simply sends the transaction data and immediately returns. The implementation of the interface eventually receives this as a regular call from the Binder thread pool as a normal remote call. If oneway is used with a local call, there is no impact and the call is still synchronous.

定義AIDL接口

使用java語(yǔ)法在源碼目錄中創(chuàng)建你的 .aidl 文件

當(dāng)你在應(yīng)用中創(chuàng)建了 .aidl 文件粥脚,Android SDK tools 會(huì)基于這個(gè)文件自動(dòng)為我們?cè)?gen/ 目錄中生成IBinder對(duì)象。這樣客戶端就可以通過IBinder實(shí)現(xiàn)IPC通訊

通過AIDL綁定服務(wù)的如下步驟:

  1. 創(chuàng)建 .aidl 文件

  2. 實(shí)現(xiàn)接口

    文件自動(dòng)創(chuàng)建接口文件包个,內(nèi)部Stub類必須繼承Binder刷允,實(shí)現(xiàn)Stubd方法內(nèi)的行為

  3. 對(duì)客戶端暴露接口

    實(shí)現(xiàn)的Service重寫 onBind()方法 返回你實(shí)現(xiàn)的stub類

aidl文件的做了任何的改變,切記修改使用你服務(wù)的客戶端

1.創(chuàng)建 .aidl 文件

IRemoteService.aidl

// IRemoteService.aidl
package com.example.administrator.aidl.AIDL;

import com.example.administrator.aidl.AIDL.IRemoteServiceCallback;

// Declare any non-default types here with import statements

interface IRemoteService {
    /**
     * Demonstrates some basic types that you can use as parameters
     * and return values in AIDL.
     */
    void registerCallback(IRemoteServiceCallback cb);
    void unregisterCallback(IRemoteServiceCallback cb);
}

ISecondary.aidl

// ISecondary.aidl
package com.example.administrator.aidl.AIDL;

// Declare any non-default types here with import statements

interface ISecondary {
    /**
     * Demonstrates some basic types that you can use as parameters
     * and return values in AIDL.
     */

    int getPid();
}

IRemoteServiceCallback.aidl

// IRemoteServiceCallback.aidl
package com.example.administrator.aidl.AIDL;

// Declare any non-default types here with import statements

interface IRemoteServiceCallback {
    /**
     * Demonstrates some basic types that you can use as parameters
     * and return values in AIDL.
     */
    void valueChanged(int value);
}

實(shí)現(xiàn) .aidl 文件中的接口,如實(shí)現(xiàn) IRemoteService.aidlISecondary.aidl 接口

創(chuàng)建 .aidl 文件時(shí)碧囊,Android skd Tool 會(huì)自動(dòng)對(duì)應(yīng)的java文件树灶,其中會(huì)生成一個(gè)繼承Binder抽象內(nèi)部類 Stub 。所以在服務(wù)中繼承Stub糯而,實(shí)現(xiàn)自己的內(nèi)部方法天通,例如下面RemoteService中 mBinder和mSecondaryBinder中的實(shí)現(xiàn)

暴露你的接口,例如在例如下面RemoteService中OnBind的方法中歧蒋,把實(shí)現(xiàn)的對(duì)象返回給客戶端程序

RemoteService

public class RemoteService extends Service {

    @Override
    public void onCreate() {
        super.onCreate();
    }

    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        if (IRemoteService.class.getName().equals(intent.getAction())) {
            return mBinder;
        }
        if (ISecondary.class.getName().equals(intent.getAction())) {
            return mSecondaryBinder;
        }
        return null;
    }

    private final IRemoteService.Stub mBinder = new IRemoteService.Stub() {

        @Override
        public void registerCallback(IRemoteServiceCallback cb) throws RemoteException {
                cb.valueChanged(mSecondaryBinder.getPid());
        }

        @Override
        public void unregisterCallback(IRemoteServiceCallback cb) throws RemoteException {

        }
    };

    private final ISecondary.Stub mSecondaryBinder = new ISecondary.Stub() {
        @Override
        public int getPid() throws RemoteException {
            return Process.myPid();
        }
    };

}

綁定方法如同bind方法一樣土砂,bindService(intent, mConnection, Context.BIND_AUTO_CREATE);

public class Binding extends Activity {
    private static final int BUMP_MSG = 1;
    TextView mCallbackText;
    IRemoteService mService;
    Button mKillButton;
    Boolean mIsBound;
    ISecondary mSecondaryService;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.aidl_layout);

        Button bindbutton = (Button) findViewById(R.id.bind);

        bindbutton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Intent intent = new Intent(Binding.this, RemoteService.class);
                intent.setAction(IRemoteService.class.getName());
                bindService(intent, mConnection, Context.BIND_AUTO_CREATE);

                intent.setAction(ISecondary.class.getName());
                bindService(intent, mSecondaryConnection, Context.BIND_AUTO_CREATE);
                mCallbackText.setText("Binding.");
                mIsBound = true;
            }
        });

        Button unbindbutton = (Button) findViewById(R.id.unbind);
        unbindbutton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if (mIsBound) {
                    if (mService != null) {
                        try {
                            mService.unregisterCallback(mCallback);
                        } catch (RemoteException e) {
                            e.printStackTrace();
                        }
                        unbindService(mConnection);
                        mKillButton.setEnabled(false);
                        mIsBound = false;
                        mCallbackText.setText("Unbinding");
                    }
                }
            }
        });
        mKillButton = (Button) findViewById(R.id.kill);
        mKillButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if (mSecondaryService != null) {
                    try {
                        int pid = mSecondaryService.getPid();
                        Process.killProcess(pid);
                        mCallbackText.setText("Killed service process.");
                    } catch (RemoteException e) {
                        e.printStackTrace();
                        Toast.makeText(Binding.this,
                                R.string.remote_call_failed,
                                Toast.LENGTH_SHORT).show();
                    }
                }
            }
        });
        mKillButton.setEnabled(false);

        mCallbackText = (TextView) findViewById(R.id.callback);
        mCallbackText.setText("Not attached.");
    }


    private ServiceConnection mConnection = new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
            Log.e("TAG","connected");
            mService = IRemoteService.Stub.asInterface(iBinder);
            mKillButton.setEnabled(true);
            mCallbackText.setText("Attached");
            try {
                mService.registerCallback(mCallback);
            } catch (RemoteException e) {
                e.printStackTrace();
            }
            Toast.makeText(Binding.this, R.string.remote_service_connected,
                    Toast.LENGTH_SHORT).show();
        }

        @Override
        public void onServiceDisconnected(ComponentName componentName) {
            mService = null;
            mKillButton.setEnabled(false);
            mCallbackText.setText("Disconnected.");

        }
    };

    private ServiceConnection mSecondaryConnection = new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
            mSecondaryService = ISecondary.Stub.asInterface(iBinder);
            mKillButton.setEnabled(true);
        }

        @Override
        public void onServiceDisconnected(ComponentName componentName) {
            mSecondaryService = null;
            mKillButton.setEnabled(false);
        }
    };


    private IRemoteServiceCallback mCallback = new IRemoteServiceCallback.Stub() {
        @Override
        public void valueChanged(int value) throws RemoteException {
            mHandler.sendMessage(mHandler.obtainMessage(BUMP_MSG, value, 0));
        }
    };

    private Handler mHandler = new Handler() {
        @Override
        public void handleMessage(Message msg) {
            switch (msg.what) {
                case BUMP_MSG:
                    mCallbackText.setText("Received from service: " + msg.arg1);
                    break;
                default:
                    super.handleMessage(msg);
            }
        }

    };

    @Override
    protected void onDestroy() {
        super.onDestroy();
        if(mService!=null){
            unbindService(mConnection);
        }
    }
}

IPC傳遞對(duì)象

  1. 傳遞的對(duì)象實(shí)現(xiàn)Parcelable接口
  2. 在對(duì)象的類中實(shí)現(xiàn) writeToParcel方法
  3. 添加一個(gè)靜態(tài)變量CREATOR并且實(shí)現(xiàn)Parcelable.Creator 的接口
  4. 在目錄中添加一個(gè).aidl文件聲明上面所創(chuàng)建的parcelable 類,列如如下

Rect.aidl

package android.graphics;
parcelable Rect;

這里創(chuàng)建我們的Rect類州既,并實(shí)現(xiàn)現(xiàn)Parcelable接口,類中再實(shí)現(xiàn)writeToParcel方法萝映,靜態(tài)變量CREATOR

Rect.java

public class Rect implements Parcelable {
    public int left;
    public int top;
    public int right;
    public int bottom;

    public static final Parcelable.Creator<Rect> CREATOR = new Creator<Rect>() {
        @Override
        public Rect createFromParcel(Parcel parcel) {
            return new Rect(parcel);
        }

        @Override
        public Rect[] newArray(int i) {
            return new Rect[i];
        }
    };

    public Rect() {
    }

    private Rect(Parcel in) {
        readFromParcel(in);
    }

    @Override
    public int describeContents() {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel parcel, int i) {
        parcel.writeInt(left);
        parcel.writeInt(top);
        parcel.writeInt(right);
        parcel.writeInt(bottom);
    }

    public void readFromParcel(Parcel in) {
        left = in.readInt();
        top = in.readInt();
        right = in.readInt();
        bottom = in.readInt();
    }

}

在 IRemoteService.aidl添加下面的接口

Rect getRect();

在RemoteService.java中的mBinder對(duì)象中實(shí)現(xiàn)以下方法吴叶,這里我們對(duì)服務(wù)返回的對(duì)象進(jìn)行賦值

 @Override
        public Rect getRect() throws RemoteException {
            Rect rect = new Rect();
            rect.bottom = 10;
            rect.top = 10;
            rect.left = 5;
            rect.right = 6;
            return rect;
        }

這樣我們便可以在客戶端中先服務(wù)獲取我的對(duì)象,具體在Bindnd.java中的mConnection得到Rect對(duì)象序臂,如下

   private ServiceConnection mConnection = new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
            Log.e("TAG", "connected");
            mService = IRemoteService.Stub.asInterface(iBinder);
            mKillButton.setEnabled(true);
            mCallbackText.setText("Attached");
            try {
                //獲取到服務(wù)端中的Rect對(duì)象
                android.graphics.Rect rectFromService = mService.getRect();
                Log.e("TAG","bottom = "+rectFromService.bottom+",top = "+rectFromService.top+",left = "+rectFromService.left+",right ="+rectFromService.right);
                mService.registerCallback(mCallback);
            } catch (RemoteException e) {
                e.printStackTrace();
            }
            Toast.makeText(Binding.this, R.string.remote_service_connected,
                    Toast.LENGTH_SHORT).show();
        }

        @Override
        public void onServiceDisconnected(ComponentName componentName) {
            mService = null;
            mKillButton.setEnabled(false);
            mCallbackText.setText("Disconnected.");

        }
    };
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末蚌卤,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子奥秆,更是在濱河造成了極大的恐慌逊彭,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,817評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件构订,死亡現(xiàn)場(chǎng)離奇詭異侮叮,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)悼瘾,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,329評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門囊榜,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人亥宿,你說我怎么就攤上這事卸勺。” “怎么了烫扼?”我有些...
    開封第一講書人閱讀 157,354評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵曙求,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我映企,道長(zhǎng)悟狱,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,498評(píng)論 1 284
  • 正文 為了忘掉前任卑吭,我火速辦了婚禮芽淡,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘豆赏。我一直安慰自己,他們只是感情好富稻,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,600評(píng)論 6 386
  • 文/花漫 我一把揭開白布掷邦。 她就那樣靜靜地躺著,像睡著了一般椭赋。 火紅的嫁衣襯著肌膚如雪抚岗。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,829評(píng)論 1 290
  • 那天哪怔,我揣著相機(jī)與錄音宣蔚,去河邊找鬼向抢。 笑死,一個(gè)胖子當(dāng)著我的面吹牛胚委,可吹牛的內(nèi)容都是我干的挟鸠。 我是一名探鬼主播,決...
    沈念sama閱讀 38,979評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼亩冬,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼艘希!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起硅急,我...
    開封第一講書人閱讀 37,722評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤覆享,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后营袜,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體撒顿,經(jīng)...
    沈念sama閱讀 44,189評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,519評(píng)論 2 327
  • 正文 我和宋清朗相戀三年荚板,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了凤壁。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,654評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡啸驯,死狀恐怖客扎,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情罚斗,我是刑警寧澤徙鱼,帶...
    沈念sama閱讀 34,329評(píng)論 4 330
  • 正文 年R本政府宣布,位于F島的核電站针姿,受9級(jí)特大地震影響袱吆,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜距淫,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,940評(píng)論 3 313
  • 文/蒙蒙 一绞绒、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧榕暇,春花似錦蓬衡、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,762評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至缴啡,卻和暖如春壁晒,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背业栅。 一陣腳步聲響...
    開封第一講書人閱讀 31,993評(píng)論 1 266
  • 我被黑心中介騙來泰國(guó)打工秒咐, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留谬晕,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,382評(píng)論 2 360
  • 正文 我出身青樓携取,卻偏偏與公主長(zhǎng)得像攒钳,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子歹茶,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,543評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容