Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android之aidl的簡單使用

android之aidl的簡單使用

編輯:關於Android編程

aidl這裡就不加累述它的概念定義等等,免得長篇大幅。下面介紹的是我第一次使用aidl成功與service通信的一個例子:

1.在項目包下新建一個IInfo.aidl,並在其中添加你要調用的方法,格式和java中接口一樣。

01
package com.android.server;  
02
 
03
interface IInfo {
04
    boolean start();
05
    void stop();
06
    void locate(int x, int y);
07
    void move(int dx, int dy);
08
    void getLocation(<span style="background-color:#ff9900;">inout</span> int[] p);//參數為數組的話,可以加上inout,不然會報錯
09
    void setTimeout(int t);
10
    int getTimeout();
11
    void setBitmap(<span style="background-color:#ff9900;">inout</span> byte[] bmp, int width, int height);}      
正確寫好之後,eclipse的adt會自動在gen目錄下生成一個IInfo.java文件

2.新建一個MyService.java類,繼承IInfo.stubruxia,如下:

01
package com.android.server;
02
 
03
public class CursorService extends ICursorInfo.Stub{
04
    final boolean hasService;
05
    public CursorService() {
06
        hasService = initializeJNI();
07
    }
08
 
09
    public synchronized boolean start() {
10
        if (hasService)
11
            return start0();
12
        return false;
13
    }
14
 
15
    public synchronized void stop() {
16
        if (hasService)
17
            stop0();
18
    }
19
 
20
    public synchronized void locate(int x, int y) {
21
        if (hasService)
22
            locate0(x, y);
23
    }
24
 
25
    public synchronized void move(int dx, int dy) {
26
        if (hasService)
27
            move0(dx, dy);
28
    }
29
 
30
    public synchronized void getLocation(int[] p) {
31
        if (p == null)
32
            throw new NullPointerException("p is null");
33
        if (p.length < 2)
34
            throw new IllegalArgumentException("p.len must >= 2");
35
        if (hasService)
36
            getPosition0(p);
37
    }
38
 
39
    public synchronized void setTimeout(int t) {
40
        if (hasService)
41
            setTimeout0(t);
42
    }
43
 
44
    public synchronized int getTimeout() {
45
        if (hasService)
46
            return getTimeout0();
47
        return -1;
48
    }
49
 
50
    public void setBitmap(byte[] bmp, int width, int height) {
51
        if(bmp == null)
52
            throw new NullPointerException("bmp is null");
53
        if(width < 0 || height < 0)
54
            throw new IllegalArgumentException("width < 0 || height < 0");
55
        if(width * height > bmp.length)
56
            throw new IndexOutOfBoundsException("bmp less than width*height");
57
        setBitmap0(bmp,width,height);
58
    }
在其中實現你aidl中的方法
3. 新建一個Manager類,在其中構造一個內部服務連接類,實現ServiceConnection接口:

 
01
public class Manager {
02
    private static final String TAG = "Manager";
03
    
04
    private IInfo   iCurSer;
05
    
06
    private Manager(){
07
    }
08
    
09
    public Manager(Context ctx){
10
        this.context = ctx;
11
        new Manager();
12
    }
13
    
14
        /**這裡就可以與service正常通信,調用service中的方法**/
15
    
16
    public void startService(){
17
        Intent intent=new Intent("com.android.server.CursorService");
18
        context.bindService(intent,new CursorServiceConnection(),
19
                Service.BIND_AUTO_CREATE);
20
    }
21
    
22
    /**
23
     * 實現ServiceConnection接口
24
     * */
25
 
26
    public final class CursorServiceConnection implements ServiceConnection{
27
        // 和CursorService綁定時系統回調這個方法
28
        @Override
29
        public void onServiceConnected(ComponentName name, IBinder service) {
30
            // 此處不能使用強制轉換, 應該調用Stub類的靜態方法獲得CursorService接口的實例對象
31
            iCurSer=ICursorInfo.Stub.asInterface(service);
32
        }
33
 
34
        //解除和CursorService的綁定時系統回調這個方法
35
        @Override
36
        public void onServiceDisconnected(ComponentName name) {
37
            iCurSer=null;
38
        }
39
    }
40
    
41
    
42
}
 就mark到這吧,剛學,只是筆記O(∩_∩)O~


作者:blackylin
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved