Merge "Do not use prefixOrderIndex for animation layer" into sc-v2-dev am: af715328d3 am: 2f7bdbc104

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16379907

Change-Id: I16eb1a80291217f66ae318391cd7cbe6f08241fb
This commit is contained in:
Chris Li
2021-12-04 05:37:07 +00:00
committed by Automerger Merge Worker
2 changed files with 4 additions and 1 deletions

View File

@@ -129,7 +129,11 @@ public class RemoteAnimationTarget implements Parcelable {
* The index of the element in the tree in prefix order. This should be used for z-layering
* to preserve original z-layer order in the hierarchy tree assuming no "boosting" needs to
* happen.
* @deprecated WindowManager may set a z-order different from the prefix order, and has set the
* correct layer for the animation leash already, so this should not be used for
* layer any more.
*/
@Deprecated
@UnsupportedAppUsage
public final int prefixOrderIndex;

View File

@@ -436,7 +436,6 @@ class ActivityLaunchAnimator(private val launchAnimator: LaunchAnimator) {
.withAlpha(1f)
.withMatrix(matrix)
.withWindowCrop(windowCrop)
.withLayer(window.prefixOrderIndex)
.withCornerRadius(cornerRadius)
.withVisibility(true)
.build()