1
我想知道如何啓動一個即使在業務關閉時也能繼續運行的android服務。當活動停止時不停止服務
我用這個代碼:
Intent intent = new Intent(this, MyTestService.class);
bindService(intent,connection, Context.BIND_AUTO_CREATE);
謝謝。
我想知道如何啓動一個即使在業務關閉時也能繼續運行的android服務。當活動停止時不停止服務
我用這個代碼:
Intent intent = new Intent(this, MyTestService.class);
bindService(intent,connection, Context.BIND_AUTO_CREATE);
謝謝。
你可以嘗試
startService(new Intent(this, MyTestService.class));
前
Intent intent = new Intent(this, MyTestService.class);
Intent intent = new Intent(this, MyTestService.class);
startService(intent);
謝謝你,但我想保持我的ServiceConnection捕捉進行綁定時 – unamedUser
可以保持兩個方法,簡稱「startService」之前。 –