2

我的应用程序中有一个后台服务,用于检测 wifi 热点。他运行良好,但是当设备进入睡眠模式时,该服务会重新启动。我已经配置了唤醒锁和 Wifi 锁。

我的代码:(创建服务)

public void onCreate(){
    super.onCreate();
    Settings.System.putInt(getContentResolver(),
    Settings.System.WIFI_SLEEP_POLICY, 
    Settings.System.WIFI_SLEEP_POLICY_NEVER);

    wm = (WifiManager) this.getSystemService(Context.WIFI_SERVICE);
    wifiLock = wm.createWifiLock(WifiManager.WIFI_MODE_FULL, "SD1xWifi");
    wifiLock.acquire();

    mgr = (PowerManager)getSystemService(Context.POWER_SERVICE);
    wakeLock = mgr.newWakeLock(PowerManager.FULL_WAKE_LOCK, "SD1x");
    wakeLock.acquire();
}

我的代码:(启动服务)

public void onStart(Intent i, int x){
    super.onStart(i, x);
    Log.i("TesteWifi", "Find spots wifi started");
    try{
        wm.startScan();
        timer.scheduleAtFixedRate(new mainTask(), 0, 1000);
    }catch(Exception e){
        e.printStackTrace();
        Log.i("TesteWifi", "Error on start service find wifi");
    }
}

我的代码:(TimerTask)

 private class mainTask extends TimerTask {

        @Override
        public void run() {
             // ...timertask processes...
        }

我的代码:(服务在 MainActivity 中启动)

try {
    startService(obj.getServiceAutoCheckin());
} catch (Exception e) {
    Log.i("Services", "ERRO: " + e.getMessage());
}

为什么我的服务重新启动?

4

2 回答 2

1

使用广播接收器从服务中获取服务意图。

于 2013-04-24T16:31:01.473 回答
0

我解决了更改服务启动事件的问题。我通过 onStartCommand 更改了事件。服务响应为 START_STICKY。

文档

于 2013-05-06T10:06:28.157 回答