Merge "Allow Launcher to use PipContentOverlay" into tm-qpr-dev am: 98ef7be762

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

Change-Id: Ia2ed2ac55ce9d0f656cbd29f9df88e0162d22cdf
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Hongwei Wang
2023-01-30 18:06:52 +00:00
committed by Automerger Merge Worker
2 changed files with 7 additions and 0 deletions

View File

@@ -47,6 +47,7 @@ filegroup {
"src/com/android/wm/shell/sysui/ShellSharedConstants.java", "src/com/android/wm/shell/sysui/ShellSharedConstants.java",
"src/com/android/wm/shell/common/TransactionPool.java", "src/com/android/wm/shell/common/TransactionPool.java",
"src/com/android/wm/shell/animation/Interpolators.java", "src/com/android/wm/shell/animation/Interpolators.java",
"src/com/android/wm/shell/pip/PipContentOverlay.java",
"src/com/android/wm/shell/startingsurface/SplashScreenExitAnimationUtils.java", "src/com/android/wm/shell/startingsurface/SplashScreenExitAnimationUtils.java",
], ],
path: "src", path: "src",

View File

@@ -16,6 +16,7 @@
package com.android.wm.shell.pip; package com.android.wm.shell.pip;
import android.annotation.Nullable;
import android.content.Context; import android.content.Context;
import android.content.res.TypedArray; import android.content.res.TypedArray;
import android.graphics.Color; import android.graphics.Color;
@@ -41,6 +42,11 @@ public abstract class PipContentOverlay {
} }
} }
@Nullable
public SurfaceControl getLeash() {
return mLeash;
}
/** /**
* Animates the internal {@link #mLeash} by a given fraction. * Animates the internal {@link #mLeash} by a given fraction.
* @param atomicTx {@link SurfaceControl.Transaction} to operate, you should not explicitly * @param atomicTx {@link SurfaceControl.Transaction} to operate, you should not explicitly