Skip to content

Instantly share code, notes, and snippets.

@extmkv
Created March 8, 2018 09:50
Show Gist options
  • Save extmkv/46829e653fcf0ffb4f237e97c5f3b316 to your computer and use it in GitHub Desktop.
Save extmkv/46829e653fcf0ffb4f237e97c5f3b316 to your computer and use it in GitHub Desktop.
ActivityFragmentManager.add(getActivity(), FragmentExample.class)
.setTransactionAnimation(new TransactionAnimation() {
@Override
public int getAnimationEnter() {
return R.anim.enter_from_right;
}
@Override
public int getAnimationExit() {
return R.anim.exit_from_left;
}
...
})
.commit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment