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();

猜你喜欢

转载自www.cnblogs.com/ccgyyn/p/10247440.html