启动方式一:startService() onCreate()—->onStart()—->onDestory() 当采用startService()方法启动服务,访问者与服务之间是没有绑定在一起的,访问者退出,服务还在运行 启动方式二:bindService() onCreate()—->onBind()—->onUnBind() –>onDestory() 采用bindService()方法启动服务时,访问者与服务是绑定在一起的,即访问者退出,服务也就终止,解除绑定。