startService和bindService

1.调用bindService方法启动,在unbindService后,会执行service的onUnbind方法,再执行onDestroy方法。
2.先调用startService方法启动,再调用bindService方法启动,在unbindService后,会执行service的onUnbind,但是不会执行onDestroy方法。除非你再执行stopService.
如果这样启动后是先调用stopService方法也不会onDestroy。必须要先调用unbinderService解绑定再stopService才会调用onDestroy方法。
3. 先调用startService,再调用stopService,会执行service的onDestroy方法。
4、调用unBindService()方法断开与Service的连接时,ServiceConnection对象的onServiceDisconnected()方法并不会被调用,而是在Service所在的宿主进程由于异常中止或由于其它原因中止时才会调用ServiceConnection对象的onServiceDisconnected()方法。

你可能感兴趣的:(service)