I\'ve been working on a widget and making some advances (I hope) but still can\'t get it to do what I want.
I have a configurator activity which works ok. When it cl
In your function updateAppWidget go to this line:
updateAppWidget
PendingIntent widgetPendingIntent = PendingIntent.getBroadcast(context, 0, widgetIntent, 0);
...and change it into:
PendingIntent widgetPendingIntent = PendingIntent.getBroadcast(context, appWidgetId, widgetIntent, 0);