I'm unclear about Android's UI mechanism to go "back" one screen. I have read the docs and I understand that the hardware back button should serve to do just that. Meanwhile, the Action Bar in ICS serves as an "up" button if the activity has multiple entry points. This leaves me with two questions:
- I notice many Android apps use the left side of the Action Bar go to "back" anyway (in addition to the hardware back button). Should I do this with my app (meaning there will be two ways to go back)?
- Do Android users naturally use the hardware button to go back, or do they expect a nav button at the left side of the Action Bar to go back a la iOS? It seems like having to resort to the hardware button below the screen to go back is a pain in the ass for users (especially on tablets) - Is this really what Android UI guidelines prescribe? Thank you.