Tell me more ×
Android Enthusiasts Stack Exchange is a question and answer site for enthusiasts and power users of the Android operating system. It's 100% free, no registration required.

Possible Duplicate:
What happens to a running program when “home” button is pressed in Android phone?

My friend raised a concern that pressing the home button is not advisable and it drains battery.

Is it true? What happens when the Home button is pressed?

share|improve this question
I doubt that pressing the home button results in higher power drain. – Flow Jan 10 at 12:03

marked as duplicate by Flow Jan 10 at 11:47

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Home Button Pressed when in an app:

Most apps will save their state (any bit of data that would be needed to keep itself consistent when being resumed), and the device will switch to the launcher app.

Home Button Pressed when on the Home screens:

This is configurable by many 3rd party launchers; however a lot of them default to bringing you back to your "main" home screen (the default launcher does this).

What your friend might be concerned about:

Switching apps can be memory intensive and cause several disk writes to save the data. This uses battery; however it is usually not the main cause of battery drain on devices (the operating systems are optimized to do these things).

Some applications will continue to run as a background application, so pressing the home button will not kill them (e.g., Google Play Music will still play after pressing the home button).

Your friend might be concerned that by pressing the home button you did not exit the program, and therefore it is still running. Android will unload those applications as necessary.

You and your friend should be more concerned with the display - which uses the most amount of power.

share|improve this answer

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