我正在尝试使用以下方法阻止我的服务自行重启:
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return START_NOT_STICKY;
}
我收到一个错误“START_NOT_STICKY 无法解析为变量”,我看到了另一个关于此的问题,以及它如何需要成为服务而不是活动。我有
public class wd_locationService extends Service implements LocationListener {
这会有所作为吗?或者还有什么可能导致这种情况?谢谢