Tag archives for Broadcast

Android

How to get Battery Information programmatically in Android ?

Android OS lets to developers to get a lot of data about features of a device. Amongst these data, it’s possible to get Battery Information for exemple. An application like CPU Hardware and System Info is able to give you following information about your Battery : Present or No Health Level Plugged Charging Status Technology Temperature Voltage Capacity You can…
Continue Reading
Android

Create and Start a Background Service in Android

In Android applications, like in all mobile applications, responsiveness is often the key to offer great user experience. It’s essential to avoid blocking user interface. In some cases, you will need to process long-running operations. To void affecting user interface’s responsiveness, you will need to use background service. Deriving from IntentService class, a background service is a straightforward structure for…
Continue Reading