My MainActivity on start opens SignInFragment, SignIn after succesful auth opens MainFragment. How can I close MainActivity from these two fragments on back pressed? When I tried to add back pressed callback into needed Fragment, it’s closing MainActivity from every fragment, instead of only that one. As well I can’t use popBackStack, since Activity isn’t in BackStack. Is there’s correct sollution to close Activity from needed fragment on back pressed?