JAVA层APP访问Framework服务

前面一章我们已经写好了Framework的service,并提供了service的读写接口,即getVal( )和setVal( )两个函数,这一章,我们就要来学习如何写一个APK,通过这两个service的接口来实现hello驱动寄存器值的读写。

由于直接手写一个Android应用程序还是比较困难的,因此这里我还是需要借助IDE的环境,这里我们使用现在谷歌大力推广的Android Studio来进行应用程序的开发,当APK写完后,把应用程序的源码拷贝到packages\experimental中,并通过修改Android.mk来实现APK的编译.

1.通过Android Studio 创建hello工程

File->New->New Project
添加Application name,这里我们写为hello,修改存储路径,下一步,SKD选择API23—(Android6.0),创建一个空的Activity,我们成为HelloActivity

创建好后,Activity文件为hello\app\ src\main\java\com\tiangerge\hello\HelloActivity.java

2.修改layout

通过Android Studio打开res\layout\activity_hello.xml,拖拽一个Plain Text作为文本你输入框,拖三个button,分别命名id为value_text\btn_read\btn_write\btn_clear

3.代码实现:

src\main\java\com\tiangerge\hello\HelloActivity.java:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.tiangerge.hello;

import android.app.Activity;
import android.os.Bundle;
import android.os.IHelloService;
import android.os.ServiceManager;
import android.os.RemoteException;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;

public class HelloActivity extends Activity{
private final static String LOG_TAG = "HELLO";
private IHelloService helloService = null;

private EditText valueText = null;
private Button readbtn = null;
private Button writebtn = null;
private Button clearbtn = null;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_hello);
/*获取hello服务*/
helloService = IHelloService.Stub.asInterface(
ServiceManager.getService("hello"));
valueText = (EditText)findViewById(R.id.value_text);
readbtn = (Button)findViewById(R.id.btn_read);
writebtn = (Button)findViewById(R.id.btn_write);
clearbtn = (Button)findViewById(R.id.btn_clear);

/*读取寄存器值*/
readbtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
try {
int val = helloService.getVal();
String text = String.valueOf(val);
valueText.setText(text);
} catch (RemoteException e) {
Log.e(LOG_TAG, "Remote Exception while reading value from device.");
}
}
});

/*写寄存器值*/
writebtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
try {
String text = valueText.getText().toString();
int val = Integer.parseInt(text);
helloService.setVal(val);
} catch (RemoteException e) {
Log.e(LOG_TAG, "Remote Exception while writing value to device.");
}
}
});

clearbtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String text = "";
valueText.setText(text);
}
});
}
}

4.编译环境

hello的工程拷贝到packages\experimental中,修改Android.mk

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(call all-subdir-java-files)
LOCAL_PACKAGE_NAME := Hello
include $(BUILD_PACKAGE)

5.编译

mmm packages/experimental/Hello
make snod

通过上面两个命令,就可以把hello.apk编译打包到system.img中

我们部署到手机中,打开hello.apk,点击按钮read,读取寄存器val的值;点击write,把输入框中的内容写入到寄存器中,点击clear,清楚输入框的内容。

到这里,我们从APK到Kernel的一条通路基本上有了一个正面的了解,让我们不再对Android系统恐惧,更让我们有信心更加深入的学习Android。

接下来将会学习Android的启动流程,让我们知道Android手机从按下电源键,怎样启动系统,怎样进入Home的UI界面。

注:代码程序主要参考《老罗的Android之旅》来完成。

Tianger Ge wechat
如果您喜欢这篇文章,欢迎扫一扫我的微信公众号!