I have an app with a widget. I want to start the app with the widget but after booting my widget does not respond to a click. Only after starting the app normally (and closing it again) does the widget start to respond to the click on the widget itself.
This is how I setup the widget with the AppWidgetProvider:
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds)
{ final int ids = appWidgetIds.length;
for(int i=0;i<ids;i++)
{ int appWidgetId = appWidgetIds[i];
Intent intent = new Intent(context, TestReceiver.class);
intent.setAction(ACTION_WIDGET_RECEIVER);
intent.setClassName(TestReceiver.class.getPackage().getName(), TestReceiver.class.getName());
PendingIntent pi = PendingIntent.getBroadcast(context, 0, intent, 0);
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget);
views.setOnClickPendingIntent(R.id.widget_root, pi);
views.setTextViewText(R.id.widgetclock, "Loading...");
appWidgetManager.updateAppWidget(appWidgetId, views);
}
}
What do I have to change so that my app registers clicks on the widget after a boot without having to start it first at least once ?
BroadcastReceiversand theIntentsystem works, then (and only then) try to write an app widget. – CommonsWare Apr 18 '12 at 21:16