How can I set exact, repeating alarms in Android 4.4?

前端 未结 1 1856
别那么骄傲
别那么骄傲 2021-02-05 12:52

Right now, I am setting alarms like this:

        AlarmManager manager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
        Intent intent = new Int         


        
相关标签:
1条回答
  • 2021-02-05 12:58

    Unfortunately, the scheduled times for repeating are inexact and I read that they could be inexact for a full interval!

    If your targetSdkVersion is 19 or higher, yes.

    What can I do instead to set an exact repeating alarm?

    Use setExact() to get control for your initial delay. Then, as part of your work for processing that event, use setExact() to get control at your next desired time. IOW, you do the "repeating" part yourself.

    Yes, this is irritating.

    It is intentionally irritating, to steer developers to not use exact repeating alarms, as those are worse for the battery than are their inexact brethren. If the user will perceive the inexact behavior and will not appreciate it, feel free to use setExact() to make the alarms occur when the user wants. However, if the user will not perceive the inexact behavior, please use inexact alarms, as the user may notice the battery impact of your exact alarms.

    0 讨论(0)
提交回复
热议问题