My app has a widget that shows today's date and need to be updated on midnight. The widget is defined in the manifest as

<manifest>
    ...
    <application>
        ...
        <receiver
            android:name=".MyWidgetProviderClass"
            android:label="MyLabel" >
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            </intent-filter>

            <meta-data
                android:name="android.appwidget.provider"
                android:resource="@xml/widget_icon_info" />
        </receiver>
    </application>
</manifest>

And the widget info file is

<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
    android:initialLayout="@layout/my_layout"
    android:minHeight="40dp"
    android:minWidth="294dp"
    android:updatePeriodMillis="3600000" >
</appwidget-provider>

This causes the widget to get updated anytime between midnight and 1pm but I want to to get updated closer to midnight so I added to the app an intent receiver

<receiver
     android:name=".MyWidgetUpdaterClass"
     android:enabled="true" >
     <intent-filter>
         <action android:name="MyAction" />
      </intent-filter>
</receiver>

and a static method

public static void setMidngintAlarms(Context context) {
    Intent intent = new Intent("MyAction");
    PendingIntent pendingIntent = 
        PendingIntent.getBroadcast(context, 0, intent, 0);              
    long interval = 24*60*60*1000;        
    long firstTime = SystemClock.elapsedRealtime() + 
        millisecondsToNextMidnight();
    AlarmManager am = (AlarmManager)context.getSystemService(
        Context.ALARM_SERVICE);
    am.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP,
                    firstTime, interval, pendingIntent);
}

(since alarm manager requests with the same intent overwriting each other there is not harm in calling setMidngintAlarms multiple times).

I tried calling setMidnightAlarms() from few places (from the app's main activity, from the AppWidgetProvider's onUpdate(), etc). Everything works well and the alarm manager intents are received and the widget is updated but only as long as the app runs. If I killed the app, the widgets stops updating on midnight.

Any idea how to cause the widgets to update on midnight? Do I need to add a service? If so how? Any example?

I am a little bit surprised how non trivial it is to get this basic functionality to work.

link|improve this question

50% accept rate
The widget should still update because you are setting an alarm for it. So it doesnt matter whether the app is running or not. It does mater if the device restarts and you dont register your alarm from the beginning. – coder_For_Life22 Jan 5 at 23:45
When a repeating alarm is set and is never canceled explicitly. Under what conditions does the android system cancel it, if at all? I could not find relevant info. For example, is it tied to the activity or service that sent it or does it live forever independently? – user1076637 Jan 6 at 1:31
feedback

1 Answer

If I killed the app, the widgets stops updating on midnight.

Of course. Don't kill the app.

Any idea how to cause the widgets to update on midnight?

Don't kill the app. If the user kills your app, the user is saying "I do not want this to run anymore". And on Android 3.1+, nothing of your code will ever run again until the user manually launches an activity of yours from the launcher.

Hence, if the user kills your app, do not worry about it and simply respect their wishes.

link|improve this answer
I was killing the main activity as a simulation of the Android system terminating it (gracefully) to make sure the update is independent of the main app. Is there a better way of simulating it? The android system can potentially terminate activities when it needs the resources. – user1076637 Jan 6 at 1:31
@user1076637: "The android system can potentially terminate activities when it needs the resources" -- actually, no. It will get rid of your whole process when it needs the RAM. But using a task killer or Force Stop from Settings is not a suitable way to simulate it. If you really want to simulate it, after exiting your activity, do a whole bunch of other stuff on the device, until Android terminates your process. You might try killing the process from DDMS, though I do not know if that impacts alarms. – CommonsWare Jan 6 at 1:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.