close

android 上建立 service 有 startService(), bindService() 兩種方式:


1. startService():
onCreate --> onStart

退出 Activity 時 Service 仍可繼續在背景運作
一直到執行 stopService() 的時候直接onDestroy


2. bindService():
onCreate
退出 Activity 時 Service 同時以 onUnbind-->onDestroyed 退出,
若 Activity 已退出但未以 onUnbind 將 Service 一併退出, 將發生 Exception


 

arrow
arrow
    全站熱搜

    ness 發表在 痞客邦 留言(0) 人氣()