Using this code, I can find the battery level of the phone:
int level = battery.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);
int scale = battery.getIntExtra(BatteryManager.EXTRA_SCALE, -1);
float percent = (level / (float)scale) * 100;
But how do I get the battery usage details of apps installed on phone, including that of the screen, as shown in the image below?
Battery stats can be dumped from the device like this for API >= 19:
For API < 19, use: