unbindService()
onStartCommand()
onBind()
onDestroy()
准备结束服务
通过bindService()方式启动服务,访问者与服务绑定在一起,访问者一旦退出,服务也终止
startService()
onCreate()
onBind(Intent intent)
onRebind()
onUnbind()
bindService()
通过startService()运行的服务,访问者和服务没有关联,访问者退出,服务仍继续运行
stopService()
服务运行中