I want to know about the battery usage percentage for each apps and available battery power in the android.

link|improve this question

76% accept rate
1  
Go to Settings -> About Phone -> Battery -> Battery Use. There are Application that give you even more detail. I don't think this is a programming question though? – trojanfoe Feb 8 '11 at 12:47
1  
Here you can find a very good answer on that topic! – Roflcoptr Feb 8 '11 at 12:48
4  
Do you want code for this? – Vikas Patidar Feb 8 '11 at 12:49
@creative MITian: ya i wanna code – selladurai Feb 8 '11 at 13:10
You can refer the CommonsWare's (Mr. Mark Murphy) answer. – Vikas Patidar Feb 8 '11 at 13:14
feedback

2 Answers

up vote 5 down vote accepted
Settings» About phone» Battery use

 The following ways are used to save battery life in Android,

 •Disable 3G connectivity and tell the device to only use 2G networks.
 •Put your phone on standby mode when you are not using it.
 •Set your screen timeout to the shortest length possible.
 •Use the Power Control widget.
 •Reduce the brightness of your display.
 •Put the device in “Airplane Mode” while on an airline flight.
 •When traveling, take your charger as well as a USB cable with you and get a car charger.
 •Set a reasonable update frequency for apps.
 •Turn off the phone vibration function.
 •Turn off the GPS.
 •Turn off the Bluetooth feature when not needed.
 •Turn off the wireless feature when not needed or set a Wi-Fi timeout.
 •Switch off auto-sync.
 •Do not leave applications running when you don’t need them.
 •Turn off “Background data” usage.
 •Don’t drain the battery.
link|improve this answer
feedback

There are no APIs for getting the information you seek, other than gross battery level via BatteryManager and a sticky broadcast.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.