重复服务设计Android

时间:2016-06-28 12:41:27

标签: android service alarmmanager

我在我的应用程序中有以下设计:我有一个活动设置重复警报启动接收器启动我的服务。每一分钟。在我的服务中,我设置了Start Sticky但是一旦Android决定终止我的服务,我就无法让它重新启动。这是Android 4.4.2。这是我的代码:

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
    Intent i1 = new Intent(MainActivity.this, AlarmReceiver.class);
    PendingIntent pi = PendingIntent.getBroadcast(MainActivity.this, 0, i1, PendingIntent.FLAG_UPDATE_CURRENT);
    am.setRepeating(AlarmManager.RTC_WAKEUP, 0, 60 * 1000, pi);
}

这是接收器

    public void onReceive(Context arg0, Intent arg1) {
    // For our recurring task, we'll just display a message
    Log.d(Constants.TAG, "Starting Service");
    Intent intent = new Intent(arg0, MyLocationService.class);
    arg0.startService(intent);
}

和服务:

private static PowerManager.WakeLock wl;
private static OkHttpClient client;
@Nullable
@Override
public IBinder onBind(Intent intent) {
    return null;
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    Log.d(Constants.TAG, "Service onStartCommand");
    PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
    wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, Constants.TAG);
    wl.acquire();
    client = new OkHttpClient();
    new GetLocation(MyLocationService.this).execute();
    return START_STICKY;
}

1 个答案:

答案 0 :(得分:0)

您最有可能看到与电源管理和警报的互动。从API 19开始,默认情况下所有警报都不精确,因此它们将与其他警报进行整理。此外,一旦设备进入较低功率状态,警报就会传送到BroadcastReceiver,并且只要接收器正在执行其onReceive()方法,设备就会保证保持清醒状态。一旦从该方法返回(以及与警报相关联的任何其他BroadcastReceiver),设备将立即再次进入低功率状态。由于您的应用程序之前已被杀死,Service不再运行,也不会获得CPU时间。

解决此问题的方法是使用WakefulReceiver在运行onReceive()时使用唤醒锁,启动Service进行处理。然后Service将在完成处理后释放唤醒锁。本文将为您提供一个很好的解释:http://po.st/7UpipA

请注意,每分钟唤醒会严重降低设备的电池寿命,因此您应该考虑将其关闭。