I'm making a 2D game for android and I've recently been looking at optimisation. I looked at the battery-use in settings and found that after leaving my game in the foreground (with screen on) for a little over an hour I had drained 11% of the battery (Motorola Xoom Honeycomb). Is this something that users will expect from a game on their phone/tablet?
A bit of Info:
My game uses Opengl-es for rendering (continuous render)
Logic runs in a separate thread for performance.
I used getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); thought it was necessary as the game requires a bit of thinking time from the user.
Simple Particles
So is that kind of battery use normal for a game and what steps can I take to reduce it?
Thread.wait(timeout)in your various threads it will remove the tax on the CPU and therefore be better for battery. i.e. if you've updated the screen recently, you can actually wait, say, at least 20ms (50Hz) before updating again. – BicycleDude Feb 9 at 20:05Thread.wait(timeout)orThread.sleep(timeout)is pretty much the same thing. – Tudor Feb 9 at 20:14