In an activity i need to clear the stack i.e on clicking back it should go to home page of device and clear the stack of activities. I am using following code:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.addCategory(Intent.CATEGORY_HOME);
startActivity(intent);
It is coming to home screen but when the icon of app is clicked again it does not go to login page i.e. the first screen instead goes to second screen. What to do to resolve the issue. Thanks