我有一个需要在后台永久运行的服务,但活动关闭后,它创建的IntentService也将立即运行:

public class CAS extends IntentService {
  public CAS() {
    super("CAS");
  }

  Sensor accelerometer;
  SensorManager sensorManager;
  CA cA= new CA();

  @Override
  protected void onHandleIntent(@Nullable Intent intent) {
    sensorManager = (SensorManager)getSystemService(SENSOR_SERVICE);

    accelerometer = sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);

    sensorManager.registerListener(cA, accelerometer, SensorManager.SENSOR_DELAY_FASTEST);

    LocationManager locationManager = GlobalFunctions.LocationLibrary.getLocationManager(this);

    cA.start(this, locationManager);
  }
}


我如何才能使此类在后台无限期地运行,甚至在Android运行时启动?

最佳答案

您需要向BroadcastReceiver注册服务

这是同一个sample程序。

重新启动设备时,检查this答案以重新启动服务

BroadcastReceiver的Documentation

希望这可以帮助。

关于java - 在没有 Activity 的情况下运行IntentService,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51326131/

10-09 19:44