Really simply I know that android does not allow us to catch the home button press; however, I have my own built home screen replacement app and want to just know when the button was pressed to allow animations.
so my app has just one activity as i do most of my "activities" as canvas drawling so i can have complete control over the visual aesthetics of my app... the problem is if the user navigate to a different page within the app and presses home nothing happens since the app is technically already in the same activity.
I want to know when the button is pressed so I can then animate/navigate my app back to the main screen. Also i know i could accomplish this by having separate real activities however that wont work for what I'm trying to do