I have an application . The flow is -
Splash Screen ---> Home Screen ---> Item List Screen ---> Item Details Screen
In my application i have home button functionality on Item List Screen and Item Details Screen.
When i press Home Button on Item Details screen it goes back to Home Screen . This is expected behaviour.
But when i press back button on Home screen , it takes me back to the Item Details Screen.(this is what i dont want)
I tried killing the Item Details Screen using finish(), But then the last activity in the activity stack is Item List Screen.
The Back button on Home screen now takes me to the Item List Screen .
Is there any way to clear the activity stack when user is on Home Screen . Any help in this regard will be highly appreciated.

