Hi,
I'm just starting with android development and have written an application to show details about the battery status.
Now I wanted to put the whole thing into an widget - and here's the question:
Do I really need a update service in the background to listen for ACTION_BATTERY_CHANGED
intents? My first thought was to put just a
<action android:name="android.intent.action.ACTION_BATTERY_CHANGED" />
line into the <intet-filter>
tag of the widget in the AndroidManifest.xml
- but obviously it's not that simple.
If the UpdateService is the right way I'll do so - but I just wanted to make sure what the proper solution is.