Skip to content

Instantly share code, notes, and snippets.

@extmkv
Created March 8, 2018 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save extmkv/a5902ded8d34ca6404eeda74e1dd91de to your computer and use it in GitHub Desktop.
Save extmkv/a5902ded8d34ca6404eeda74e1dd91de to your computer and use it in GitHub Desktop.
public class ActivityPrimaryTheme extends AbstractFragmentActivity {
...
@Override
public int getAnimationEnter() {
return R.anim.enter_from_right;
}
@Override
public int getAnimationExit() {
return R.anim.exit_from_left;
}
@Override
public int getAnimationPopEnter() {
return R.anim.pop_enter;
}
@Override
public int getAnimationPopExit() {
return R.anim.pop_exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment