在系統(tǒng)開發(fā)中泳唠,尤其是自定義系統(tǒng)格粪,必然要封裝一些系統(tǒng)方法供第三方開發(fā)應(yīng)用使用舍哄。
1.自定義系統(tǒng)服務(wù)
除frameworks自定義服務(wù)(本文內(nèi)容)溪椎,也可以額外寫個(gè)service+aidl應(yīng)用
2.jar包生成供第三方應(yīng)用使用
開發(fā)環(huán)境
RK平臺(tái)5.1Android系統(tǒng)
一普舆、添加系統(tǒng)服務(wù)
1、創(chuàng)建服務(wù)接口aidl文件
創(chuàng)建文件 IMyApiService
文件路徑 frameworks/base/core/java/android/os/
package android.os;
interface IMyApiService{
Integer getSum(Integer data1,Integer data2);
}
定義了一個(gè)計(jì)算和的方法校读。
2沼侣、aidl文件加入Android.mk編譯
在frameworks/base/Android.mk
LOCAL_SRC_FILES最后加入
core/java/android/os/IMyApiService.aidl \
3、創(chuàng)建service文件
創(chuàng)建文件 MyApiService.java
文件路徑 frameworks/base/core/java/com/android/server/
package com.android.server;
import android.os.RemoteException;
import android.os.IMyApiService;
import android.util.Log;
import android.content.Context;
public class MyApiService extends IMyApiService.Stub{
private String TAG = "MyApiService";
private Context mContext;
public MyApiService(Context context){
mContext = context;
}
@Override
public Integer getSum(Integer data1,Integer data2)throws RemoteException{
return data1+data2;
}
}
實(shí)現(xiàn)aidl的接口地熄,計(jì)算參數(shù)和华临。
4、自定義service加入SystemServer啟動(dòng)項(xiàng)
(1)Context添加服務(wù)名
文件路徑 frameworks/base/core/java/android/content/Context.java
添加
public static final String MY_API_SERVICE = "my_api_service";
(2)添加啟動(dòng)服務(wù)
文件路徑 frameworks/base/services/java/com/android/server/SystemServer.java
在startOtherServices方法中添加
Slog.i(TAG, "Init MyApiService");
try{
ServiceManager.addService(Context.MY_API_SERVICE ,new MyApiService(context));
}catch(Throwable e){
Slog.e(TAG, "Failure starting MyApiService", e);
}
5端考、創(chuàng)建Manager文件
創(chuàng)建 MyApiManager.java文件
文件路徑 frameworks/base/core/java/android/app/
package com.android.app;
import android.util.Log;
import android.os.IMyApiService;
import android.content.Context;
public class MyApiManager{
private String TAG = "MyApiManager";
private Context mContext;
private IMyApiService mService;
public MyApiManager(Context context,IMyApiService service){
mContext = context;
mService = service;
}
public Integer getSum(Integer data1,Integer data2){
try{
return mService.getSum(data1,data2);
}catch(Exception e){
Log.e(TAG,"error getSum "+e.toString());
e.printStackTrace();
}
return null;
}
}
6雅潭、注冊到SystemService
文件路徑 frameworks/base/core/java/android/app/ContextImpl
添加registerService
registerService(MY_API_SERVICE, new ServiceFetcher() {
public Object createService(ContextImpl ctx) {
IBinder b = ServiceManager.getService(MY_API_SERVICE);
return new MyApiManager(ctx,IMyApiService.Stub.asInterface(b));
}
});
7、重新編譯源代碼
記住make update-api
編譯打包完成后却特,燒寫新的固件扶供。
二、生成jar包
jar主要為了在android studio編譯環(huán)境中MyApiManager報(bào)錯(cuò)導(dǎo)致編譯不通過問題裂明。
也可以導(dǎo)入frameworks jar包或使用反射椿浓。
1、新建JAR包文件夾
在源碼目錄packages/app下新建MyJar文件夾
并新建目錄com/myapi/(包名)
2闽晦、新建MyApi.java
在目錄com/myapi/新建文件MyApi.java
package com.myapi;
import android.app.MyApiManager;
import android.content.Context;
public class MyApi{
private MyApiManager myApiManager;
public MyApi(Context context){
myApiManager= (MyApiManager) context.getSystemService(Context.MY_API_SERVICE);
}
public int getSum(int data1,int data2){
return myApiManager.getSum(data1,data2);
}
}
3扳碍、新建Android.mk
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES :=com/myapi/MyApi.java
LOCAL_MODULE :=Myapi
include $(BUILD_STATIC_JAVA_LIBRARY)
具體Android.mk語法這里不做解釋,可以自行查閱
3仙蛉、編譯生成jar文件
在MyApi目錄下直接運(yùn)行mm編譯命令(記得先source build/envsetup.sh)
待編譯完成后笋敞,jar生成目錄
out/target/common/obj/JAVA_LIBRARIES/Myapi_intermediates/javalib.jar
可更改為其他名稱。
3荠瘪、在應(yīng)用中使用jar包方法即可
MyApi myApi = new MyApi (this);
Log.d(TAG,"getSum="+myApi .getSum(2,5));