1

我是新来的android。我在申请中挣扎了大约 3 周。我需要在正常模式下发送和接收数据包,并且sleep mode. My app必须交换数据 5 秒。我尝试使用alarmmanager,但在 android 5 上它不起作用。在android5 上,间隔将其更改为 60 秒。这样的解决方案会使电池很快耗尽。当我使用普通的 asynctask,notIntentService时,它仅在屏幕可见ONapp可见时才有效。当应用程序被隐藏或我单击电源时OFF,交换数据停止工作。什么是最好的解决方案?

4

2 回答 2

1

即使是 RTC_WAKEUP 在大多数情况下也无济于事。

当设备处于深度睡眠模式时适用于我的应用程序的解决方案:
WakefulBroadcastReceiver与 AlarmManager 结合使用。

服务由 startWakefulService() 启动,完成后通过调用 completeWakefulIntent(intent) 释放唤醒锁。因此,设备将被允许重新进入睡眠状态。

我没有添加任何代码。搜索有关如何将 WakefulBroadcastReceiver 与 AlarmManager 一起使用的示例。甚至 WakefulBroadcastReceiver 文档也有一些模板代码。

还可以减少警报频率,这样您就可以避免消耗太多电池。

于 2015-11-25T17:39:39.090 回答
0

您可以使用AlarmManager该类在特定时间唤醒设备,然后以您想要的任何时间间隔触发操作。来自此处找到的文档的代码:

private AlarmManager alarmMgr;
private PendingIntent alarmIntent;
...
alarmMgr = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
Intent intent = new Intent(context, AlarmReceiver.class);
alarmIntent = PendingIntent.getBroadcast(context, 0, intent, 0);

// Set the alarm to start at 8:30 a.m.
Calendar calendar = Calendar.getInstance();
calendar.setTimeInMillis(System.currentTimeMillis());
calendar.set(Calendar.HOUR_OF_DAY, 8);
calendar.set(Calendar.MINUTE, 30);

// setRepeating() lets you specify a precise custom interval--in this case,
// 20 minutes.
alarmMgr.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(),
1000 * 60 * 20, alarmIntent);

注意这个块的最后一行。您可以使用该方法setRepeating()设置您想要的任何间隔。

于 2015-11-25T15:15:13.957 回答