startService和bindService的使用Service 生命同期startService 和bindService 区别startService & stopService的生命周期使用场景
Service 生命同期startService 和bindService 区别startService: onCreate -> onStartCommand -> onDestory ,在多次调用startService的时候,onCreate不重复执行,但是onStartCommand会执行。startService调用了这后,会一直存在,直到其调用了stopService。bindService : onCreate -> onBind -&am