Service的两种启动方式

一、Context.startService()

 * 声明周期:

Service中                                    Context中

----------------------------------------------------------------------------------------

onCreate()                            <----startService()

onStartCommand()              

onDestory()                          <----stopService() / Service#stopSelf()


二、Context.bindService()

* 声明周期:

Service中                                    Context中

----------------------------------------------------------------------------------------

onCreate()                            <----bindService()

onBind()

onUnbind()                          <----unBindService()

onDestory()

你可能感兴趣的:(Service的两种启动方式)