Android中的服務和windows中的服務是類似的東西,服務一般沒有用戶操作界面绷落,它運行于系統(tǒng)中不容易被用戶發(fā)覺始苇,可以使用它開發(fā)如監(jiān)控之類的程序 。
Service 的簡單實用
- 第一步:繼承Service類
public class MyService extends Service { }
- 第二步:在AndroidManifest.xml文件中的<application>節(jié)點里對服務進行配置:
<service android:name=".MyService" />
- 第三部:Service 啟動方式
- 啟動:Context.startService(Intent service)
- 停止:Context.stopService(Intent name)
- 啟動:Context.bindService(Intent service, ServiceConnection conn,
int flags)- 停止:Context.unbindService(ServiceConnection conn)
Service 的兩種啟動方式
- 隱式啟動:
首先在 AndroidManifest.xml 清單文件中對 service 進行配置:
<service android:name=".MyService" android:exported="true">
<intent-filter>
<action android:name="com.cfox.myservice"/>
</intent-filter>
</service>
從代碼中可以看到在 service 中有 android:exported,并且我們設置成了 true 荣月,如果設置成 true 則表示可以通過其他App 啟動該服務哺窄,如果設置為false 不可被外部應用啟動(默認為false),如果設置了 intent-filter 則android:exported將默認設置為true坷襟。再看這個幾行配置代碼生年,在service 中添加了 intent-filter ,又在 intent-filter 中添加 action档叔≌艏ǎ看到這可能會有疑問患亿,action 是干什么的?下面我們來看一下隱式啟動方式卡睦。
Intent intent = new Intent();
intent.setAction("com.cfox.myservice");
intent.setPackage("com.cfox.servicecontrol");
startService(intent);
我們可以看到在 Intent 中設置了 Action漱抓,并且 Action 的內容和 AndroidManifest.xml 中 intent-filter 中的 action 相對應∷惭罚可到這里可能明白些了仪或,繼續(xù)看 setPackage 就又不明白了范删,啟動service 為什么還要 setPackage ,在Android 5.0 開始如果你不設置 setPackage 將無法啟動 service 同時還會拋出異常旨巷。下面我們來看一下 Android 4.4 和 Android 5.0 啟動 service 的源碼添忘。
Android 4.4
@Override
public ComponentName startService(Intent service) {
warnIfCallingFromSystemProcess();
return startServiceCommon(service, mUser);
}
private ComponentName startServiceCommon(Intent service, UserHandle user) {
try {
validateServiceIntent(service);
.........//省略部分代碼
} catch (RemoteException e) {
return null;
}
}
我們重點注意一下這代碼:
private void validateServiceIntent(Intent service) {
if (service.getComponent() == null && service.getPackage() == null) {
if (true || getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.KITKAT) {
Log.w(TAG, "Implicit intents with startService are not safe: " + service
+ " " + Debug.getCallers(2, 3));
//IllegalArgumentException ex = new IllegalArgumentException(
// "Service Intent must be explicit: " + service);
//Log.e(TAG, "This will become an error", ex);
//throw ex;
}
}
}
開到上面這段代碼搁骑,就會明白,在 Android 4.4 中已經添加了這個安全機制煤率,只是被注釋了乏冀。
Android 5.0
其他地方都沒有變煤辨,直接看Android 5.0 中 validateServiceIntent 方法:
private void validateServiceIntent(Intent service) {
if (service.getComponent() == null && service.getPackage() == null) {
if (getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.LOLLIPOP) {
IllegalArgumentException ex = new IllegalArgumentException(
"Service Intent must be explicit: " + service);
throw ex;
} else {
Log.w(TAG, "Implicit intents with startService are not safe: " + service
+ " " + Debug.getCallers(2, 3));
}
}
}
看到這段代碼就知道在Android 5.0 以后為什么沒有setPackage 會出現崩潰現象众辨。
- service 顯示啟動:
下面是一種簡單的顯示啟動方式:
Intent intent = new Intent(this,MyService.class);
startService(intent);
啟動service 時可用通過 intent 設置數據。
Service 生命周期
下面我們來看一下集成 Service 類所有生命周期方法:
public class MyService extends Service {
@Override
public void onCreate() {
super.onCreate();
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return super.onStartCommand(intent, flags, startId);
}
@Override
public void onRebind(Intent intent) {
super.onRebind(intent);
}
@Override
public void onDestroy() {
super.onDestroy();
}
}
看完這些生命周期方法郊闯,可能已經有知道大概了。我service 的生命周期先介紹到這育拨,下面結合啟動方式在看一下service 的生命周期欢摄。
Service 的兩種啟動方式
- Context.startService()方法啟動服務有關的生命周期方法
Service 的生命周期方法:onCreate() —> onStart() —> onStartCommand() —> onDestroy()- 注意:注意使用 startService 啟動服務之后怀挠,一定要使用 stopService停止服務,不管你是否使用bindService闷畸。
- Context.bindService()方法啟動服務有關的生命周期方法
Service 的生命周期方法:onCreate() —> onBind() —> onUnbind() —> onDestroy()吞滞。- 注意:你應當知道在調用 bindService 綁定到Service的時候裁赠,你就應當保證在某處調用 unbindService 解除綁定(盡管 Activity 被 finish 的時候綁定會自動解除,并且Service會自動停止)凸舵。
Service 生命周期方法
- onCreate()
該方法在服務被創(chuàng)建時調用失尖,該方法只會被調用一次,無論調用多少次startService()或bindService()方法菇夸,服務也只被創(chuàng)建一次仪吧。
- onStartCommand()
在 sdk 2.0 及其以后的版本中薯鼠,對應的 onStart 已經被棄用了,變?yōu)榱薿nStartCommand羞芍,不過之前的 onStart 任然有效郊艘。這意味著,如果你開發(fā)的應用程序用的 sdk 為 2.0 及其以后的版本畏浆,那么你應當使用 onStartCommand 而不是 onStart刻获。
- onBind()
只有采用Context.bindService()方法啟動服務時才會回調該方法。該方法在調用者與服務綁定時被調用勉盅,當調用者與服務已經綁定顶掉,多次調用Context.bindService()方法并不會導致該方法被多次調用挑胸。
- onUnbind()
該方法只有在調用 Context.bindService() 綁定服務后茬贵,在調用Context.unbindService() 解除綁定的時被調用 。
- onDestroy()
該方法在Service 銷毀時被調用老充。但是如果這樣----》設置-->下載-->強制停止螟左。則不會執(zhí)行ondestory方法,或者通過別人應用胶背,如360直接kill掉我的應用時钳吟,也是不會調用Service的ondestory方法的。
被啟動的服務的生命周期
如果一個Service被某個Activity 調用 Context.startService 方法啟動坝茎,那么不管是否有Activity使用bindService綁定或unbindService解除綁定到該Service暇番,該Service都在后臺運行。如果一個Service被startService 方法多次啟動斤吐,那么onCreate方法只會調用一次和措,onStart將會被調用多次(對應調用startService的次數),并且系統(tǒng)只會創(chuàng)建Service的一個實例(因此你應該知道只需要一次stopService調用)诬留。該Service將會一直在后臺運行贫母,而不管對應程序的Activity是否在運行,直到被調用stopService绿贞,或自身的stopSelf方法籍铁。當然如果系統(tǒng)資源不足趾断,android系統(tǒng)也可能結束服務。
被綁定的服務的生命周期
如果一個Service被某個Activity 調用 Context.bindService 方法綁定啟動增显,不管調用 bindService 調用幾次脐帝,onCreate方法都只會調用一次腮恩,同時onStart方法始終不會被調用。當連接建立之后武契,Service將會一直運行荡含,除非調用Context.unbindService 斷開連接或者之前調用bindService 的 Context 不存在了(如Activity被finish的時候)释液,系統(tǒng)將會自動停止Service,對應onDestroy將被調用浸船。
被啟動又被綁定的服務的生命周期
如果一個Service又被啟動又被綁定,則該Service將會一直在后臺運行登淘。并且不管如何調用黔州,onCreate始終只會調用一次阔籽,對應startService調用多少次,Service的onStart便會調用多少次绅这。調用unbindService將不會停止Service君躺,而必須調用 stopService 或 Service的 stopSelf 來停止服務开缎。
- 注意:同時使用 startService 與 bindService 要注意到林螃,Service 的終止疗认,需要unbindService與stopService同時調用,才能終止 Service谨设,不管 startService 與 bindService 的調用順序扎拣,如果先調用 unbindService 此時服務不會自動終止素跺,再調用 stopService 之后服務才會停止指厌,如果先調用 stopService 此時服務也不會終止,而再調用 unbindService 或者 之前調用 bindService 的 Context 不存在了(如Activity 被 finish 的時候)之后服務才會自動停止鸥诽。
讓Service自動重啟而不被kill掉
先讓我們看一下 Service 重啟方法,很簡單决帖,只要重寫service的onStartCommand方法地回。根據實際設置返回值就可以了俊鱼。
public int onStartCommand(Intent intent, int flags, int startId) {
return START_STICKY;
}
下面我們介紹下這個方法并闲,在Android開發(fā)的過程中帝火,每次調用startService(Intent)的時候,都會調用該Service對象的onStartCommand(Intent,int,int)方法蠢壹,然后在onStartCommand方法中做一些處理九巡。然后我們注意到這個函數有一個int的返回值图贸,這篇文章就是簡單地講講int返回值的作用。
從Android官方文檔中冕广,我們知道onStartCommand有4種返回值:
- START_STICKY:
如果service進程被kill掉疏日,保留service的狀態(tài)為。
開始狀態(tài)撒汉,但不保留遞送的intent對象沟优。隨后系統(tǒng)會嘗試重新創(chuàng)建service,由于服務狀態(tài)為開始狀態(tài)睬辐,所以創(chuàng)建服務后一定會調用onStartCommand(Intent,int,int)方法挠阁。如果在此期間沒有任何啟動命令被傳遞到service溉委,那么參數Intent將為null鹃唯。
- START_NOT_STICKY:
“非粘性的”。使用這個返回值時瓣喊,如果在執(zhí)行完onStartCommand后坡慌,服務被異常kill掉,系統(tǒng)不會自動重啟該服務藻三。
- START_REDELIVER_INTENT:
重傳Intent洪橘。使用這個返回值時跪者,如果在執(zhí)行完onStartCommand后,服務被異常kill掉熄求,系統(tǒng)會自動重啟該服務渣玲,并將Intent的值傳入。
- START_STICKY_COMPATIBILITY:
START_STICKY的兼容版本弟晚,但不保證服務被kill后一定能重啟忘衍。
在 AndroidManifest.xml 里 Service 元素的常見選項
key | value |
---|---|
android:name | 服務類名 |
android:label | 服務的名字,如果此項不設置卿城,那么默認顯示的服務名則為類名 |
android:icon | 服務的圖標 |
android:permission | 服務的權限枚钓,這意味著只有提供了該權限的應用才能控制或連接此服務 |
android:process | 表示該服務是否運行在另外一個進程,如果設置了此項瑟押,那么將會在包名后面加上這段字符串表示另一進程的名字 |
android:enabled | 如果此項設置為 true搀捷,那么 Service 將會默認被系統(tǒng)啟動,不設置默認此項為 false |
android:exported | 表示該服務是否能夠被其他應用程序所控制或連接多望,不設置默認此項為 false |
bindService 啟動 Service 方法:
定義服務實現效接口:
public interface IServiceControl {
void insert(String msg);
void addList(List<String> lists);
String query(String id);
UserInfo setUser(UserInfo userInfo);
}
UserInfo 類:
public class UserInfo {
private String name;
private int age;
public UserInfo(){}
public UserInfo(String name,int age){
this.name = name;
this.age = age;
}
..... get and set method ....
}
service 中 IBinder 接口的實現:
創(chuàng)建類繼承 Binder 并實現 IServiceControl 接口嫩舟。
private class MyBind extends Binder implements IServiceControl{
@Override
public void insert(String msg) {
}
@Override
public void addList(List<String> lists) {
}
@Override
public String query(String id) {
return "return String message";
}
@Override
public UserInfo setUser(UserInfo userInfo) {
return userInfo;
}
}
啟動Service 中 Activity 中 ServiceConnection 的使用
在使用 Context.bindService 啟動服務時,要實現ServiceConnection 接口怀偷。
private IServiceControl serviceControl;
private class MyControl implements ServiceConnection{
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
serviceControl = (IServiceControl) service;
}
@Override
public void onServiceDisconnected(ComponentName name) {
serviceControl = null;
}
}
在activity 中啟動 Service
Intent intent = new Intent(this, InService.class);
MyControl conn = new MyControl();
bindService(intent,conn, BIND_AUTO_CREATE);
方法的調用
通過 serviceControl 調用 Service 中的實現方法家厌。