編輯:關於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~
我們在自定義android組件的時候,除了用Java構建出組件的樣子外,有時候還需要去申明一些“屬性”提供給項目使用,那麼什麼是組件
第7節 TableLayoutTableLayout顧名思義,就是像表格一樣的布局。它是LinearLayout的子類,所以擁有TableLayout的所有屬性。7.1
前言 一個好的應用需要一個有良好的用戶體驗的登錄界面,現如今,許多應用的的登錄界面都有著用戶名,密碼一鍵刪除,用戶名,密碼
什麼是RecyclerView RecyclerView是Android 5.0 ma