I have many fragments in an activity. I move to some activity from one of the fragments. There are two cases. If I press hardware back button, I move back to the fragment fr
You can call the method onBackPressed(); of the Activity to give you the ability to back button just like the hardware back button.
onBackPressed();
if you are in fragment call getActivity().onBackPressed()
getActivity().onBackPressed()