电话重启后,Android IntentService仅运行ONCE。为什么?

时间:2015-02-08 19:42:50

标签: android broadcastreceiver intentservice android-intentservice

背景和问题

我已经在stackoverflow上检查了几十个教程,示例和问题,这些问题与手机关闭后服务未注册的问题有关。

我的问题几乎相似而略有不同:我使用IntentService(我需要从外部数据库收集数据并将其显示为通知)并且服务每30秒运行一次没有任何问题,直到我关掉手机。

有趣的部分

这是奇怪的行为!我转回手机,IntentService仅注册。启动后,我得到了我的通知(在示例中我只使用了日志,为了简单起见)只有一次,然后再也没有。

活动代码的一部分(我可以在其中设置服务)

private void setRecurringAlarm(Context context) {

        AlarmManager service = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
        Intent i = new Intent(context, BackgroundDataServiceReceiver.class);
        PendingIntent pending = PendingIntent.getBroadcast(context, 0, i,
                PendingIntent.FLAG_CANCEL_CURRENT);

        Calendar cal = Calendar.getInstance();
        cal.add(Calendar.SECOND, 30);   

        service.setInexactRepeating(AlarmManager.RTC_WAKEUP,
        cal.getTimeInMillis(), 30*1000, pending);   

    }

IntentService

public class BackgroundDataService extends IntentService {

....
@Override
    protected void onHandleIntent(Intent intent) {

      Log.i("BACKGROUNDDATASERVICE STATUS", "running");

    }
}

广播接收器

public class BackgroundDataServiceReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        Intent dailyUpdater = new Intent(context, BackgroundDataService.class);
        context.startService(dailyUpdater);

    }
}

清单

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

 <application
...
  <service android:name="com.example.blgui3.BackgroundDataService" >
        </service>

        <receiver android:name="com.example.blgui3.BackgroundDataServiceReceiver" >
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
                <action android:name="android.intent.action.QUICKBOOT_POWERON" />
            </intent-filter>
        </receiver>

...
</application>

据我所知,我的service是否需要执行后台任务,例如使用AsyncTask从外部数据库获取数据,然后建议使用IntentService。即使我在启动后启动应用程序,该服务仍然只运行一次,因此它根本不会注册BOOT_COMPLETE操作。经过几个小时的努力,我完全不知道哪里出错了。

1 个答案:

答案 0 :(得分:1)

该服务在使用BOOT_COMPLETED启动后启动,但不启动任何活动,似乎只是设置警报的活动。