I have two activities. Activity A starts activity B when button is pressed. Activity B loads some data on create. When I press back button activity B is being destroyed but I want to just pause it and get back to activity A. I tried:
@Override
public void onBackPressed() {
moveTaskToBack(true);
}
But it gets me to the home screen, not activity A.