Skip to content

Commit f52b82e

Browse files
authored
Update README.md
1 parent d730d6c commit f52b82e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,22 +120,22 @@ If you want to add a single animation only for one transaction you can do this:
120120
```java
121121
ActivityFragmentManager.add((AbstractFragmentActivity) getActivity(), FragmentExample.class, new TransactionAnimation() {
122122
@Override
123-
public int getEnter() {
123+
public int getAnimationEnter() {
124124
return R.anim.enter_from_right;
125125
}
126126

127127
@Override
128-
public int getExit() {
128+
public int getAnimationExit() {
129129
return R.anim.exit_from_left;
130130
}
131131

132132
@Override
133-
public int getPopEnter() {
133+
public int getAnimationPopEnter() {
134134
return R.anim.pop_enter;
135135
}
136136

137137
@Override
138-
public int getPopExit() {
138+
public int getAnimationPopExit() {
139139
return R.anim.pop_exit;
140140
}
141141
});

0 commit comments

Comments
 (0)