一、Context.startService()
* 声明周期:
Service中 Context中
----------------------------------------------------------------------------------------
onCreate() <----startService()
onStartCommand()
onDestory() <----stopService() / Service#stopSelf()
二、Context.bindService()
* 声明周期:
Service中 Context中
----------------------------------------------------------------------------------------
onCreate() <----bindService()
onBind()
onUnbind() <----unBindService()
onDestory()