Loading packages/SystemUI/animation/src/com/android/systemui/animation/ActivityLaunchAnimator.kt +16 −0 Original line number Original line Diff line number Diff line Loading @@ -606,12 +606,28 @@ class ActivityLaunchAnimator( object : Controller by delegate { object : Controller by delegate { override fun onLaunchAnimationStart(isExpandingFullyAbove: Boolean) { override fun onLaunchAnimationStart(isExpandingFullyAbove: Boolean) { listener?.onLaunchAnimationStart() listener?.onLaunchAnimationStart() if (DEBUG_LAUNCH_ANIMATION) { Log.d( TAG, "Calling controller.onLaunchAnimationStart(isExpandingFullyAbove=" + "$isExpandingFullyAbove) [controller=$delegate]" ) } delegate.onLaunchAnimationStart(isExpandingFullyAbove) delegate.onLaunchAnimationStart(isExpandingFullyAbove) } } override fun onLaunchAnimationEnd(isExpandingFullyAbove: Boolean) { override fun onLaunchAnimationEnd(isExpandingFullyAbove: Boolean) { listener?.onLaunchAnimationEnd() listener?.onLaunchAnimationEnd() iCallback?.invoke() iCallback?.invoke() if (DEBUG_LAUNCH_ANIMATION) { Log.d( TAG, "Calling controller.onLaunchAnimationEnd(isExpandingFullyAbove=" + "$isExpandingFullyAbove) [controller=$delegate]" ) } delegate.onLaunchAnimationEnd(isExpandingFullyAbove) delegate.onLaunchAnimationEnd(isExpandingFullyAbove) } } Loading Loading
packages/SystemUI/animation/src/com/android/systemui/animation/ActivityLaunchAnimator.kt +16 −0 Original line number Original line Diff line number Diff line Loading @@ -606,12 +606,28 @@ class ActivityLaunchAnimator( object : Controller by delegate { object : Controller by delegate { override fun onLaunchAnimationStart(isExpandingFullyAbove: Boolean) { override fun onLaunchAnimationStart(isExpandingFullyAbove: Boolean) { listener?.onLaunchAnimationStart() listener?.onLaunchAnimationStart() if (DEBUG_LAUNCH_ANIMATION) { Log.d( TAG, "Calling controller.onLaunchAnimationStart(isExpandingFullyAbove=" + "$isExpandingFullyAbove) [controller=$delegate]" ) } delegate.onLaunchAnimationStart(isExpandingFullyAbove) delegate.onLaunchAnimationStart(isExpandingFullyAbove) } } override fun onLaunchAnimationEnd(isExpandingFullyAbove: Boolean) { override fun onLaunchAnimationEnd(isExpandingFullyAbove: Boolean) { listener?.onLaunchAnimationEnd() listener?.onLaunchAnimationEnd() iCallback?.invoke() iCallback?.invoke() if (DEBUG_LAUNCH_ANIMATION) { Log.d( TAG, "Calling controller.onLaunchAnimationEnd(isExpandingFullyAbove=" + "$isExpandingFullyAbove) [controller=$delegate]" ) } delegate.onLaunchAnimationEnd(isExpandingFullyAbove) delegate.onLaunchAnimationEnd(isExpandingFullyAbove) } } Loading