我正在尝试制作使用服务的应用程序。但我需要服务来连续运行。如果我使用 360 安全、任务杀手等 3rd 方应用程序,我不希望它停止。我已经以这种方式创建了我的服务。谢谢进步。
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
super.onStartCommand(intent, flags, startId);
return START_STICKY;
}
我使用了 START_STICKY,但这无济于事。