In my menu I have some items. Home is an item of it that I want to be root of my application and whenever user clicks on it, Android clear stack and then come back to main s
If you want to start an Activity to be the only one existing (that is, clear the whole backstack), use the following flags:
Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK
Requires API-Level >= 11.