本文的要點(diǎn)如下:
- Service簡(jiǎn)介
- Service的生命周期
- Service的基本用法
- 普通服務(wù)(不可通信)
- 普通服務(wù)(可通信)
- 前臺(tái)服務(wù)
- IntentService
- 總結(jié)
Service簡(jiǎn)介
定義:Service(服務(wù))是Android中實(shí)現(xiàn)程序后臺(tái)運(yùn)行的解決方案柳骄,是Android四大組件之一, 屬于計(jì)算型組件
作用:去執(zhí)行那些不需要和用戶交互而且還要求長(zhǎng)期運(yùn)行的任務(wù)(如:復(fù)雜計(jì)算箕般、音樂播放耐薯、下載等)
特點(diǎn):無(wú)用戶界面
Service的生命周期
依舊先上經(jīng)典圖:
在Service的生命周期里,常用的有:
4個(gè)手動(dòng)調(diào)用的方法:
手動(dòng)調(diào)用方法 | 作用 |
---|---|
startService() | 啟動(dòng)服務(wù) |
stopService() | 關(guān)閉服務(wù) |
bindService() | 綁定服務(wù) |
unbindService() | 解綁服務(wù) |
5個(gè)自動(dòng)調(diào)用的方法:
內(nèi)部自動(dòng)調(diào)用方法 | 作用 |
---|---|
onCreate() | 創(chuàng)建服務(wù) |
onStartCommand() | 開始服務(wù) |
onDestroy() | 銷毀服務(wù) |
onBind() | 綁定服務(wù) |
onUnbind() | 解綁服務(wù) |
從上圖可看到有兩種方法可以啟動(dòng)Service:
第一種:其他組件調(diào)用Context的startService()方法可以啟動(dòng)一個(gè)Service,并回調(diào)服務(wù)中的onStartCommand()曲初。如果該服務(wù)之前還沒創(chuàng)建体谒,那么回調(diào)的順序是onCreate()->onStartCommand()。服務(wù)啟動(dòng)了之后會(huì)一直保持運(yùn)行狀態(tài)臼婆,直到stopService()(外部)或stopSelf()(內(nèi)部)方法被調(diào)用抒痒,服務(wù)停止并回調(diào)onDestroy()。另外颁褂,無(wú)論調(diào)用多少次startService()方法评汰,只需調(diào)用一次stopService()或stopSelf()方法,服務(wù)就會(huì)停止了痢虹。
第二種:其它組件調(diào)用Context的bindService()可以綁定一個(gè)Service被去,并回調(diào)服務(wù)中的onBind()方法。類似地奖唯,如果該服務(wù)之前還沒創(chuàng)建惨缆,那么回調(diào)的順序是onCreate()->onBind()。之后丰捷,調(diào)用方可以獲取到onBind()方法里返回的IBinder對(duì)象的實(shí)例坯墨,從而實(shí)現(xiàn)和服務(wù)進(jìn)行通信。只要調(diào)用方和服務(wù)之間的連接沒有斷開病往,服務(wù)就會(huì)一直保持運(yùn)行狀態(tài)捣染,直到調(diào)用了unbindService()方法服務(wù)會(huì)停止,回調(diào)順序onUnBind()->onDestroy()停巷。
注意耍攘,這兩種啟動(dòng)方法并不沖突,當(dāng)使用startService()啟動(dòng)Service之后畔勤,還可再使用bindService()綁定蕾各,只不過(guò)需要同時(shí)調(diào)用 stopService()和 unbindService()方法才能讓服務(wù)銷毀掉。
Service的基本用法
普通服務(wù)(不可通信)
- 新建子類繼承Service類庆揪,必須重寫父類的onBind()方法式曲,可以根據(jù)需要重寫onCreate()、onStartCommand()和onDestroy()方法缸榛。
- 構(gòu)建用于啟動(dòng)Service的Intent對(duì)象吝羞。
- 調(diào)用startService()啟動(dòng)Service、調(diào)用stopService()停止服務(wù)内颗。
- 在AndroidManifest.xml里注冊(cè)Service钧排。
public class MyService extends Service {
private static final String TAG = "MyService";
@Override
public void onCreate() {
super.onCreate();
Log.d(TAG,"執(zhí)行了onCreate()");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d(TAG,"執(zhí)行了onStartCommand()");
return super.onStartCommand(intent, flags, startId);
}
@Override
public void onDestroy() {
super.onDestroy();
Log.d(TAG,"執(zhí)行了onDestory()");
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
}
不可通信的普通服務(wù)是最簡(jiǎn)單的服務(wù),從工作流程也可以看出起暮,其他組件只能對(duì)服務(wù)進(jìn)行開啟和關(guān)閉卖氨,并沒有通信的方法。
普通服務(wù)(可通信)
要想服務(wù)和其他組件進(jìn)行通信负懦,組件指揮服務(wù)去干什么筒捺,服務(wù)就去干什么,這時(shí)就需要借助onBind方法了:
private DownloadBinder mBinder = new DownloadBinder();
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
class DownloadBinder extends Binder {
public void startDownload(){
Log.e(TAG,"startDownload");
}
public int getProgress(){
Log.e(TAG,"getProgess");
return 0;
}
}
在Activity通過(guò)調(diào)用DownloadBinder類中的public方法即可實(shí)現(xiàn)Activity與Service的通信纸厉。
private MyService.DownloadBinder downloadBinder;
private ServiceConnection connection = new ServiceConnection() {
//服務(wù)成功綁定時(shí)調(diào)用
@Override
public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
downloadBinder = (MyService.DownloadBinder) iBinder;
downloadBinder.startDownload();
downloadBinder.getProgress();
}
//服務(wù)解綁時(shí)調(diào)用
@Override
public void onServiceDisconnected(ComponentName componentName) {
}
};
@OnClick(R.id.bind_service)
public void bindOnclick(){
Intent bindIntent = new Intent(this,MyService.class);
bindService(bindIntent,connection,BIND_AUTO_CREATE);//綁定服務(wù)
}
@OnClick(R.id.unbind_service)
public void unbindOnclick(){
unbindService(connection);//解綁服務(wù)
}
可以看到系吭,主要步驟就是創(chuàng)建了一個(gè)ServiceConnection匿名類,在里面重寫了onServiceConnected()和onServiceDisconnected()方法颗品。這兩個(gè)方法光看名字也知道分別在Service成功綁定和解綁時(shí)調(diào)用肯尺,里面就可以通過(guò)向下轉(zhuǎn)型獲取Binder實(shí)例,調(diào)用Binder中的public方法即可完成Service和Activity的通信躯枢。
前臺(tái)服務(wù)
前臺(tái)Service和后臺(tái)Service(普通)最大的區(qū)別就在于则吟,前臺(tái)Service在下拉通知欄有顯示通知,但后臺(tái)Service沒有锄蹂。因此氓仲,前臺(tái)服務(wù)的優(yōu)先級(jí)會(huì)高于后臺(tái)服務(wù),通常情況下不會(huì)被系統(tǒng)回收得糜。
前臺(tái)服務(wù)的創(chuàng)建也和普通服務(wù)差不多敬扛,只需稍加修改即可:
@Override
public void onCreate() {//服務(wù)創(chuàng)建時(shí)調(diào)用
Log.e(TAG,"MyFrontService onCreate");
super.onCreate();
Intent intent = new Intent(this,MainActivity.class);
PendingIntent pi = PendingIntent.getActivity(this, 0 ,intent ,0);
Notification notification = new NotificationCompat.Builder(this,"default")
.setContentTitle("this ic content title")
.setContentText("this is content text")
.setWhen(System.currentTimeMillis())
.setSmallIcon(R.mipmap.ic_launcher)
.setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher))
.setContentIntent(pi)
.build();//構(gòu)建Notification對(duì)象
//讓Service變成前臺(tái)Service,并在系統(tǒng)的狀態(tài)欄顯示出來(lái)
startForeground(1,notification);
}
可以看到,僅僅只是多調(diào)用了一個(gè)startForeground方法朝抖,其第一個(gè)參數(shù)是Notification的id啥箭,第二個(gè)參數(shù)是Notification對(duì)象。
IntentService
我們都知道治宣,Service是運(yùn)行在主線程中的艳汽,因此其中不能做耗時(shí)操作,以免發(fā)生ANR情況歇父。
為了可以更方便的創(chuàng)建一個(gè)異步的虱朵、可以自動(dòng)停止的Service,Android中專門提供了一個(gè)IntentService類豌拙,繼承自Service陕悬。
它的用法其實(shí)很簡(jiǎn)單:
- 新建類并繼承IntentService,在這里需要提供一個(gè)無(wú)參的構(gòu)造函數(shù)且必須在其內(nèi)部調(diào)用父類的有參構(gòu)造函數(shù);
- 具體實(shí)現(xiàn) onHandleIntent()方法按傅,在里可以去處理一些耗時(shí)操作而不用擔(dān)心 ANR的問題捉超,因?yàn)檫@個(gè)方法已經(jīng)是在子線程中運(yùn)行的了。
- 在配置文件中進(jìn)行注冊(cè)唯绍。
- 在活動(dòng)中利用Intent實(shí)現(xiàn)IntentService的啟動(dòng)拼岳,和Service用的方法是完全一樣的。
public class MyIntentService extends IntentService {
public MyIntentService() {
super("MyIntentService");
}
@Override
protected void onHandleIntent(@Nullable Intent intent) {
//打印當(dāng)前線程的id况芒,證明確實(shí)是在子線程中運(yùn)行
Log.d("MyIntentService","thread id is :"+
Thread.currentThread().getId());
}
@Override
public void onDestroy() {
super.onDestroy();
Log.d("MyIntentService","onDestory executed");
}
}
總結(jié)
1. Service用于提供與UI無(wú)關(guān)的服務(wù)惜纸,是Android中的四大組件之一。
2. 服務(wù)大致可以分為兩種類型:后臺(tái)服務(wù)和前臺(tái)服務(wù),區(qū)別在于是否在通知欄有顯示通知耐版。
3. 服務(wù)的啟動(dòng)方法有兩種:startService或bindService祠够,這兩種方法并不沖突,當(dāng)使用startService()啟動(dòng)Service之后粪牲,還可再使用bindService()綁定古瓤,只不過(guò)需要同時(shí)調(diào)用 stopService()和 unbindService()方法才能讓服務(wù)銷毀掉。
4. 服務(wù)是運(yùn)行在UI線程的腺阳,里面不能做耗時(shí)操作落君,為了可以更方便的創(chuàng)建一個(gè)異步的、可以自動(dòng)停止的Service亭引,Android中專門提供了一個(gè)IntentService類绎速,繼承自Service。