1
我的應用程序具有綁定到活動的遠程,前臺輔助服務。當我清除最近的任務(通過刷卡)服務銷燬。我怎樣才能防止殺人的服務。清除最近的任務時防止終止服務
<service android:enabled="true"
android:exported="false"
android:stopWithTask="false"
android:process=":xplay"
android:name="com.perm.x.Services.PlayingService"/>
下面是我(在的onResume)結合
Intent serviceIntent = new Intent(this,PlayingService.class);
startService(serviceIntent);
bindService(serviceIntent, serviceConnection, Context.BIND_AUTO_CREATE);
這裏是我我怎麼解除綁定服務(在的onPause)
unbindService(serviceConnection);
應用程序後您的設備是否有哪個版本的Android?該服務是否最終會被系統重新啓動? – Karakuri
4.1果凍豆。是的,服務約4秒後重新啓動通知 – dooplaye
也我測試其他應用程序。除Poweramp玩家外幾乎所有人都有相同的行爲。他只是忽略了殺人 – dooplaye