我知道周围有类似的问题,但没有一个对我有帮助......我正在尝试设置一个重复警报来触发广播接收器,而这又会触发一个意图服务。我知道打瞌睡模式会推迟警报,我不介意。起初警报工作正常,但一段时间后它根本没有发出。这就是我设置闹钟的方式:
public static void startRepeated(Context context){
Intent intent=new Intent(context,MyService.class);
//starting it manually first because API 19+ doesn't deliver exact alarms, but we want a run now
context.startService(intent);
intent = new Intent(context,ServiceReceiver.class);
int minutes=PreferenceManager.getDefaultSharedPreferences(context).getInt("timer",R.integer.timer_def);
final PendingIntent pendingIntent= PendingIntent.getBroadcast(context.getApplicationContext(),1,intent,PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager alarmManager=(AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
alarmManager.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, SystemClock.elapsedRealtime(),minutes*60000,pendingIntent);
}
接收方(WakefulBroadcastReceiver)的onreceive方法:
@Override
public void onReceive(Context context, Intent intent) {
Log.e("SERV-RECEIVER ","triggered");
startWakefulService(context,new Intent(context,MyService.class));
}
请注意,发生这种情况时,我看不到 SERV-RECEIVER 日志,因此即使接收器也不会被触发。我的意图服务打开一个 SQLite 数据库,做一些工作,关闭它,然后释放唤醒锁。接收者在 android manifest 中注册,没有意图:
<receiver android:name=".ServiceReceiver" android:enabled="true"/>
我尝试使用 adb 命令将设备设置为打盹模式并将应用程序手动设置为待机,在我唤醒设备后它仍然可以正常工作。仅当我将其放置一段时间时才会出现此问题。使用 adb shell dumpsys 警报,我注意到这总是可见的(即使在警报停止之后
trigerring):
u0a229:com.isoc.android.monitor +2s384ms running, 37 wakeups:
+2s384ms 37 wakes 37 alarms, last -6m33s804ms:
*walarm*:com.isoc.android.monitor/.ServiceReceiver
但是当问题发生时(从批处理部分),这就会消失:
ELAPSED_WAKEUP #0: Alarm{99ac864 tag *walarm*:com.isoc.android.monitor/.ServiceReceiver type 2 when 340221779 com.isoc.android.monitor}
tag=*walarm*:com.isoc.android.monitor/.ServiceReceiver
type=2 whenElapsed=-971ms when=-5s971ms
window=+3m45s0ms repeatInterval=300000 count=0 flags=0x0
operation=PendingIntent{14dfacd: PendingIntentRecord{82c6f82 com.isoc.android.monitor broadcastIntent}}
我注意到在我的 android API 15 手机上,这个问题并没有发生。仅在我的 Android 棉花糖手机上...任何帮助将不胜感激 :) 谢谢