答えて

0

私はあなたが崩壊によって何を意味するのか分かりません。しかし、アラームはデバイスの時間だけを知っているので、デバイスの時間を変更すると、代わりにそれに対応するはずです。

1

まあ、それはあなたがアラームマンの設定方法で渡したタイプによって異なります。

あなたがELAPSED_REALTIMEやELAPSED_REALTIME_WAKEUPを使用している場合、アラームは、デバイスの時間

RTC 

Added in API level 1 
int RTC 
Alarm time in System.currentTimeMillis() (wall clock time in UTC). This alarm does not wake the device up; if it goes off while the device is asleep, it will not be delivered until the next time the device wakes up. 
応じて、ユーザーRTCやRTC_WAKEUP持っている場合、アラームがトリガされます

ELAPSED_REALTIME 

Added in API level 1 
int ELAPSED_REALTIME 
Alarm time in SystemClock.elapsedRealtime() (time since boot, including sleep). This alarm does not wake the device up; if it goes off while the device is asleep, it will not be delivered until the next time the device wakes up. 

トリガされません

関連する問題