Merge "Swap z-order of tasks for default wallpaper-open animation" into udc-dev am: 34fb513c85
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23149774 Change-Id: I257a8443d3e0e756159b6eeaa666510ea98e67e7 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -435,6 +435,23 @@ public class DefaultTransitionHandler implements Transitions.TransitionHandler {
|
|||||||
backgroundColorForTransition =
|
backgroundColorForTransition =
|
||||||
uiContext.getColor(R.color.overview_background);
|
uiContext.getColor(R.color.overview_background);
|
||||||
}
|
}
|
||||||
|
if (wallpaperTransit == WALLPAPER_TRANSITION_OPEN
|
||||||
|
&& TransitionUtil.isOpeningType(info.getType())) {
|
||||||
|
// Need to flip the z-order of opening/closing because the WALLPAPER_OPEN
|
||||||
|
// always animates the closing task over the opening one while
|
||||||
|
// traditionally, an OPEN transition animates the opening over the closing.
|
||||||
|
|
||||||
|
// See Transitions#setupAnimHierarchy for details about these variables.
|
||||||
|
final int numChanges = info.getChanges().size();
|
||||||
|
final int zSplitLine = numChanges + 1;
|
||||||
|
if (TransitionUtil.isOpeningType(mode)) {
|
||||||
|
final int layer = zSplitLine - i;
|
||||||
|
startTransaction.setLayer(change.getLeash(), layer);
|
||||||
|
} else if (TransitionUtil.isClosingType(mode)) {
|
||||||
|
final int layer = zSplitLine + numChanges - i;
|
||||||
|
startTransaction.setLayer(change.getLeash(), layer);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
final float cornerRadius;
|
final float cornerRadius;
|
||||||
|
|||||||
Reference in New Issue
Block a user