How can i get battery usage by application in android. I need to know % of battery spent by application. It's possible using SDK?

The information that i need, using an android device it's on "Settings>About phone>Battery use"

Thanks

link|improve this question
feedback

4 Answers

I've never done this, but you can browse the source code for the Activities which are responsible for this behavior on current Android devices:

PowerUsageSummary.java, PowerGaugePreference.java, or the parent fuel gauge directory.

link|improve this answer
+1, it's a bit of work to dissect the code but it's all there – orip Aug 28 '11 at 16:53
feedback

The project isn't complete by any stretch of the imagination, but I created an application framework (kinda...that was the goal, it's not there yet) to do just this. Check out http://syspower.googlecode.com. You won't be able to get the percentage by application unless you calculate the usage for all applications but you can get quantitative values for power consumption. You can obviously then use those numbers to calculate a percentage. Also, you should note that the power consumption API is private and in order to access it, I had to use a number of reflective calls to access private and hidden data members. Given that, it may or may not work with all Android versions (I've tested it with 1.6-2.1). I basically had to reverse engineer the FuelGuage app from the open source repository.

link|improve this answer
Thanks, I will check that framework. – João Lopes Jan 10 '11 at 15:26
feedback

I've viewed a lot and found that many APIs used in battery usage stats are from package "com.android.os.internal" which is not open to us.

I don't know if it's possible to implement this package by copy the code into our own project and import it. Just a thought. I think Chris's method maybe available.

link|improve this answer
feedback

Well i found the answer here,link

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.