We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d730d6c commit f52b82eCopy full SHA for f52b82e
1 file changed
README.md
@@ -120,22 +120,22 @@ If you want to add a single animation only for one transaction you can do this:
120
```java
121
ActivityFragmentManager.add((AbstractFragmentActivity) getActivity(), FragmentExample.class, new TransactionAnimation() {
122
@Override
123
- public int getEnter() {
+ public int getAnimationEnter() {
124
return R.anim.enter_from_right;
125
}
126
127
128
- public int getExit() {
+ public int getAnimationExit() {
129
return R.anim.exit_from_left;
130
131
132
133
- public int getPopEnter() {
+ public int getAnimationPopEnter() {
134
return R.anim.pop_enter;
135
136
137
138
- public int getPopExit() {
+ public int getAnimationPopExit() {
139
return R.anim.pop_exit;
140
141
});
0 commit comments