Loading core/java/android/app/FragmentManager.java +5 −3 Original line number Diff line number Diff line Loading @@ -1353,9 +1353,11 @@ final class FragmentManagerImpl extends FragmentManager implements LayoutInflate f.performDestroyView(); dispatchOnFragmentViewDestroyed(f, false); if (f.mView != null && f.mContainer != null) { if (getTargetSdk() >= Build.VERSION_CODES.O) { // Stop any current animations: f.mView.clearAnimation(); f.mContainer.endViewTransition(f.mView); } Animator anim = null; if (mCurState > Fragment.INITIALIZING && !mDestroyed && f.mView.getVisibility() == View.VISIBLE Loading Loading
core/java/android/app/FragmentManager.java +5 −3 Original line number Diff line number Diff line Loading @@ -1353,9 +1353,11 @@ final class FragmentManagerImpl extends FragmentManager implements LayoutInflate f.performDestroyView(); dispatchOnFragmentViewDestroyed(f, false); if (f.mView != null && f.mContainer != null) { if (getTargetSdk() >= Build.VERSION_CODES.O) { // Stop any current animations: f.mView.clearAnimation(); f.mContainer.endViewTransition(f.mView); } Animator anim = null; if (mCurState > Fragment.INITIALIZING && !mDestroyed && f.mView.getVisibility() == View.VISIBLE Loading