I have three fragment in an Activity C. they are behaving as tabs. I have to go from a fragment to a new Activity X. Now i want to come back to fragment from Activity X.
I have override onBackPressed but don't know how to go back to fragment/not fragmentActivity from an Activity.
if i want to go back to an Activity to another activity i override on back pressed and using intent call that actvity..
i want to do some thing like this .. this code is for coming back to previous activity
@Override
public void onBackPressed()
{
Intent intent = new Intent(CurrentActivity.this,ActivityYouLikeToGo.class);
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
startActivity(intent);
}
thanks in Advance..
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…