Re: [android-developers] What does/does not belong in WidgetProvider

2011-02-12 Thread Mark Murphy
Your entire question is phrased around "the Widget". There is no "the Widget". From the opening sentence of your question, I am interpreting "the Widget" to mean "a subclass of AppWidgetProvider that handles the processing for an app widget or family of app widget instances". On Sat, Feb 12, 2011

[android-developers] What does/does not belong in WidgetProvider

2011-02-12 Thread AndroidDevTime
Widget Provider is a specialized BroadcastReceiver. Assuming there exists an Application, 1-n android service,1-k activities, and potentially additional 0-n broadcast receivers that are not widgets, I would like to verify what belongs and does not belong logically inside the broadcast receiver. He