We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
onEnterAnimationEnd()
extraTransaction().setCustomAnimations().start()
1 parent cef5447 commit 1800cc7Copy full SHA for 1800cc7
fragmentation_core/src/main/java/me/yokeyword/fragmentation/SupportFragmentDelegate.java
@@ -205,6 +205,9 @@ public void onActivityCreated(@Nullable Bundle savedInstanceState) {
205
|| (mFragment.getTag() != null && mFragment.getTag().startsWith("android:switcher:"))
206
|| (mReplaceMode && !mFirstCreateView)) {
207
notifyEnterAnimEnd();
208
+ } else if (mCustomEnterAnim != Integer.MIN_VALUE) {
209
+ fixAnimationListener(mCustomEnterAnim == 0 ?
210
+ mAnimHelper.getNoneAnim() : AnimationUtils.loadAnimation(_mActivity, mCustomEnterAnim));
211
}
212
213
if (mFirstCreateView) {
0 commit comments