2
我希望我的應用每隔一段時間醒來一次。我用來設置鬧鐘的代碼是:不醒來鬧鐘的鬧鐘
AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
alarmManager.setExact(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + pollInterval, pendingIntent);
在鬧鐘處理程序中有代碼用上面的代碼重置鬧鐘。
問題是,當手機處於深度睡眠狀態時(例如,在凌晨),鬧鐘不響。
有什麼建議嗎?