Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android widget update frequency 0, what it actually means?

I have found the following parts of code in a widget:

<appwidget-provider>
    android:updatePeriodMillis="0"
<appwidget-provider/>

Now, my question is now that: what it does mean with updatePeriodMillis set to 0.
I know that it is set for the how often the widget will receive remoteview or others. so, what is the significance to set it to 0.

like image 210
Mustakimur Khandaker Avatar asked Dec 24 '13 05:12

Mustakimur Khandaker


2 Answers

When you Set updatePeriodMillis to 0, You are actually disabling the update period on that particular widget. Means, that property is no more applicable to that widget.

like image 64
gnuanu Avatar answered Nov 15 '22 18:11

gnuanu


According to android documentation:

The updatePeriodMillis attribute defines how often the App Widget framework should request an update from the AppWidgetProvider by calling the onUpdate() callback method. The actual update is not guaranteed to occur exactly on time with this value and we suggest updating as infrequently as possible—perhaps no more than once an hour to conserve the battery. You might also allow the user to adjust the frequency in a configuration—some people might want a stock ticker to update every 15 minutes, or maybe only four times a day.

Note: If the device is asleep when it is time for an update (as defined by updatePeriodMillis), then the device will wake up in order to perform the update. If you don't update more than once per hour, this probably won't cause significant problems for the battery life. If, however, you need to update more frequently and/or you do not need to update while the device is asleep, then you can instead perform updates based on an alarm that will not wake the device. To do so, set an alarm with an Intent that your AppWidgetProvider receives, using the AlarmManager. Set the alarm type to either ELAPSED_REALTIME or RTC, which will only deliver the alarm when the device is awake. Then set updatePeriodMillis to zero ("0").

like image 26
M D Avatar answered Nov 15 '22 20:11

M D