Reputation: 38595
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.
Upvotes: 1
Views: 165
Reputation: 1006799
Call getInstalledProviders()
on the AppWidgetManager
, iterate over the list, and pay attention to those whose AppWidgetProviderInfo
provider
ComponentName
is for your package.
Upvotes: 1