I want to create a "home" button that will bring the user back to the "Home" in my app from whatever activity they are in at the time. I have overridden the action bar so I won't be able to use one. My problem is that when
Home → A → B
I want to press the home button to return to Home. Originally I had the home button simply finish()
the activity but in this case that will return me to A. Is there a way to do what I'm attempting?
Just to clarify this is an ImageButton
on screen, not the hardware home button on the device.