【Android】Android Service的生命周期
Managing the Lifecycle of a Service
原文來自: http://www.cnblogs.com/mengdd/archive/2013/03/24/2979944.html
service的生命周期,從它被創建開始,到它被銷毀為止,可以有兩條不同的路徑:
A started service
被開啟的service通過其他組件調用?startService()被創建。
這種service可以無限地運行下去,必須調用stopSelf()方法或者其他組件調用stopService()方法來停止它。
當service被停止時,系統會銷毀它。
?
A bound service
被綁定的service是當其他組件(一個客戶)調用bindService()來創建的。
客戶可以通過一個IBinder接口和service進行通信。
客戶可以通過?unbindService()方法來關閉這種連接。
一個service可以同時和多個客戶綁定,當多個客戶都解除綁定之后,系統會銷毀service。
?
這兩條路徑并不是完全分開的。
即是說,你可以和一個已經調用了?startService()而被開啟的service進行綁定。
比如,一個后臺音樂service可能因調用?startService()方法而被開啟了,稍后,可能用戶想要控制播放器或者得到一些當前歌曲的信息,可以通過bindService()將一個activity和service綁定。這種情況下,stopService()或?stopSelf()實際上并不能停止這個service,除非所有的客戶都解除綁定。
?
Implementing the lifecycle callbacks
和activity一樣,service也有一系列的生命周期回調函數,你可以實現它們來監測service狀態的變化,并且在適當的時候執行適當的工作。
下面的service展示了每一個生命周期的方法:
public class ExampleService extends Service {int mStartMode; // indicates how to behave if the service is killedIBinder mBinder; // interface for clients that bindboolean mAllowRebind; // indicates whether onRebind should be used @Overridepublic void onCreate(){// The service is being created }@Overridepublic int onStartCommand(Intent intent, int flags, int startId){// The service is starting, due to a call to startService()return mStartMode;}@Overridepublic IBinder onBind(Intent intent){// A client is binding to the service with bindService()return mBinder;}@Overridepublic boolean onUnbind(Intent intent){// All clients have unbound with unbindService()return mAllowRebind;}@Overridepublic void onRebind(Intent intent){// A client is binding to the service with bindService(),// after onUnbind() has already been called }@Overridepublic void onDestroy(){// The service is no longer used and is being destroyed } }?
不像是activity的生命周期回調函數,你不需要調用基類的實現。
?
這個圖說明了service典型的回調方法,盡管這個圖中將開啟的service和綁定的service分開,但是你需要記住,任何service都潛在地允許綁定。
所以,一個被開啟的service仍然可能被綁定。
實現這些方法,你可以看到兩層嵌套的service的生命周期:
?
The entire lifetime
service整體的生命時間是從onCreate()被調用開始,到onDestroy()方法返回為止。
和activity一樣,service在onCreate()中進行它的初始化工作,在onDestroy()中釋放殘留的資源。
比如,一個音樂播放service可以在onCreate()中創建播放音樂的線程,在onDestory()中停止這個線程。
? onCreate()?和?onDestroy()會被所有的service調用,不論service是通過startService()還是bindService()建立。
?
The active lifetime
service積極活動的生命時間(active lifetime)是從onStartCommand()?或onBind()被調用開始,它們各自處理由startService()或?bindService()方法傳過來的Intent對象。
如果service是被開啟的,那么它的活動生命周期和整個生命周期一同結束。
如果service是被綁定的,它們它的活動生命周期是在onUnbind()方法返回后結束。
注意:盡管一個被開啟的service是通過調用?stopSelf()?或?stopService()來停止的,沒有一個對應的回調函數與之對應,即沒有onStop()回調方法。所以,當調用了停止的方法,除非這個service和客戶組件綁定,否則系統將會直接銷毀它,onDestory()方法會被調用,并且是這個時候唯一會被調用的回調方法。
?
Managing the Lifecycle of a Bound Service
當綁定service和所有客戶端解除綁定之后,Android系統將會銷毀它,(除非它同時被onStartCommand()方法開啟)。
因此,如果你的service是一個純粹的綁定service,那么你不需要管理它的生命周期。
然而,如果你選擇實現onStartCommand()回調方法,那么你必須顯式地停止service,因為service此時被看做是開啟的。
這種情況下,service會一直運行到它自己調用?stopSelf()或另一個組件調用stopService(),不論它是否和客戶端綁定。
另外,如果你的service被開啟并且接受綁定,那么當系統調用你的?onUnbind()方法時,如果你想要在下次客戶端綁定的時候接受一個onRebind()的調用(而不是調用?onBind()),你可以選擇在?onUnbind()中返回true。
onRebind()的返回值為void,但是客戶端仍然在它的?onServiceConnected()回調方法中得到?IBinder?對象。
下圖展示了這種service(被開啟,還允許綁定)的生命周期:
?
參考資料
API Guides:Services
http://developer.android.com/guide/components/services.html
API Guides:Bound Services
http://developer.android.com/guide/components/bound-services.html
?
總結
以上是生活随笔為你收集整理的【Android】Android Service的生命周期的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Android】ContentProv
- 下一篇: 【Android】 Android Se