Merge "Fix slow exit transition left exited views INVISIBLE."
This commit is contained in:
committed by
Android (Google) Code Review
commit
e5e0a85ef3
@@ -124,13 +124,16 @@ class ExitTransitionCoordinator extends ActivityTransitionCoordinator {
|
||||
}
|
||||
|
||||
public void resetViews() {
|
||||
ViewGroup decorView = getDecor();
|
||||
if (decorView != null) {
|
||||
TransitionManager.endTransitions(decorView);
|
||||
}
|
||||
if (mTransitioningViews != null) {
|
||||
showViews(mTransitioningViews, true);
|
||||
setTransitioningViewsVisiblity(View.VISIBLE, true);
|
||||
}
|
||||
showViews(mSharedElements, true);
|
||||
mIsHidden = true;
|
||||
ViewGroup decorView = getDecor();
|
||||
if (!mIsReturning && decorView != null) {
|
||||
decorView.suppressLayout(false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user