1. 程式人生 > >android 前臺服務不顯示通知

android 前臺服務不顯示通知

原因可以在哪裡寫了執行完成後就自動結束的吧 導致前臺服務沒有出現

如我

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d("MyService", "onStartCommand executed");
new Thread(new Runnable() {
@Override
public void run() {
//處理具體的邏輯
stopSelf();
}
}).start();
return super.onStartCommand(intent, flags, startId);
}

寫了個stopSelf();