I have widget that display data from content provider. I want to know when data in content provider changes. As far as I know way to do it is
context.getConte
You need to add android.appwidget.action.APPWIDGET_ENABLED as another action:
Without that, you will not receive the broadcast that triggers onEnabled().
note: APPWIDGET_DELETED for onDeleted(...), APPWIDGET_DISABLED for onDisabled(...)