Note that there are some explanatory texts on larger screens.

plurals
  1. POAppWidget alarmmanager not updating
    primarykey
    data
    text
    <p>So, I've got a widget, I want it to update every 60 seconds. When the widget is first added to the homescreen, it runs its update function just fine. Beyond that it's supposed to start an AlarmManager, which will rerun the update method every 60 seconds. That's the part that it doesn't seem to be actually doing. Here's my code:</p> <pre><code>public class ClockWidget extends AppWidgetProvider { public static String CLOCK_WIDGET_UPDATE = "com.nickavv.cleanwidget.CLEANCLOCK_UPDATE"; @Override public void onUpdate(Context context, AppWidgetManager appWidgetManager, int appWidgetIds[]) { final int N = appWidgetIds.length; for (int i = 0; i &lt; N; i++) { int appWidgetId = appWidgetIds[i]; RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.clocklayout); appWidgetManager.updateAppWidget(appWidgetId, views); updateAppWidget(context, appWidgetManager, appWidgetId); } } public static void updateAppWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId) { Log.d("log","Entered update cycle"); //Unimportant for these purposes appWidgetManager.updateAppWidget(appWidgetId, views); } private PendingIntent createClockTickIntent(Context context) { Intent intent = new Intent(CLOCK_WIDGET_UPDATE); PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); return pendingIntent; } @Override public void onEnabled(Context context) { super.onEnabled(context); Log.d("onEnabled","Widget Provider enabled. Starting timer to update widget every minute"); AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE); alarmManager.setRepeating(AlarmManager.RTC, System.currentTimeMillis(), 60000, createClockTickIntent(context)); } @Override public void onDisabled(Context context) { super.onDisabled(context); Log.d("onDisabled", "Widget Provider disabled. Turning off timer"); AlarmManager alarmManager = (AlarmManager) context .getSystemService(Context.ALARM_SERVICE); alarmManager.cancel(createClockTickIntent(context)); } @Override public void onReceive(Context context, Intent intent) { super.onReceive(context, intent); Log.d("onReceive", "Received intent " + intent); if (CLOCK_WIDGET_UPDATE.equals(intent.getAction())) { Log.d("onReceive", "Clock update"); // Get the widget manager and ids for this widget provider, then // call the shared // clock update method. ComponentName thisAppWidget = new ComponentName(context.getPackageName(), getClass().getName()); AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context); int ids[] = appWidgetManager.getAppWidgetIds(thisAppWidget); for (int appWidgetID: ids) { updateAppWidget(context, appWidgetManager, appWidgetID); } } } } </code></pre> <p>It's the product of a few tutorials I've found on the matter, and my own knowledge of Android. According to my logcats, it never gets to the Log.d("onReceive", "Clock update"); line. And yes, my Manifest is set up with the clock update intent. Thanks!</p> <p>EDIT: Additional info. I put a log line in the createClockTickIntent method, and it fires off. So I guess this means that my application is running the alarmManager.setRepeating line, no idea why is isn't actually repeating.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload