I have a scenario in which from an activity, on the click of a button, I need to show a fragment with sliding in from right to left and similarly when I press back fragment slides back to the right and shows my previous activity from which the fragment was added.
Now my issue is that the animation to the fragment itself works but I need to animate the activity by sliding out to the left while the fragment is sliding in from the right.
Tried using overridePendingTransition method to do this:
overridePendingTransition(R.anim.push_in_from_left, R.anim.push_out_to_left);
I tried putting the pending transition in the methods available with the activity onResume, onPause, etc. but didn't get it to work. Following is the code I am using:
overridePendingTransition(R.anim.push_in_from_left, R.anim.push_out_to_left);
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.setCustomAnimations(R.anim.pull_in_from_left, R.anim.push_out_to_left, R.anim.pull_in_from_left, R.anim.push_out_to_left);
transaction.add(R.id.events_holder, myFragment);
transaction.addToBackStack("myFragment");
transaction.commit();
Tried to put the pending transition on the click of the button as well, before I start doing the fragment transaction things, but didn't work either.
It would be really helpful if anybody can suggest a solution to this problem.
