I Tried the following code to move from a Fragment extends Fragment to an Activity extends activity.
Intent mIntent = new Intent(getActivity(), UserProfile.class);
Bundle bundle = new Bundle();
bundle.putBoolean(Constant.isFromChatScreen, false);
mIntent.putExtras(bundle);
startActivity(mIntent);
In BaseActivity.java
I have Fragment A
, Fragment B
, Fragment C
..from Fragment A
I moved to Userprofile.java
now I want to move back to Fragment A onBackPressed
How can I do that?