Search code examples
androidandroid-appwidgetandroid-package-managersappwidgetprovider

Get list of AppWidgetProviders in my app's package


Is there an easy way to get a list of AppWidgetProviders that are in my app's package? I want to iterate over them and inspect some data from their corresponding AppWidgetProviderInfo objects at runtime.


Solution

  • Call getInstalledProviders() on the AppWidgetManager, iterate over the list, and pay attention to those whose AppWidgetProviderInfo provider ComponentName is for your package.