Skip to content
Snippets Groups Projects
Commit 2864f5bf authored by Jordan Demeulenaere's avatar Jordan Demeulenaere Committed by Automerger Merge Worker
Browse files

Merge "Add more logs in ActivityLaunchAnimator" into udc-qpr-dev am: 36bb054e

parents 83bec07c 36bb054e
No related branches found
No related tags found
No related merge requests found
......@@ -605,12 +605,28 @@ class ActivityLaunchAnimator(
object : Controller by delegate {
override fun onLaunchAnimationStart(isExpandingFullyAbove: Boolean) {
listener?.onLaunchAnimationStart()
if (DEBUG_LAUNCH_ANIMATION) {
Log.d(
TAG,
"Calling controller.onLaunchAnimationStart(isExpandingFullyAbove=" +
"$isExpandingFullyAbove) [controller=$delegate]"
)
}
delegate.onLaunchAnimationStart(isExpandingFullyAbove)
}
override fun onLaunchAnimationEnd(isExpandingFullyAbove: Boolean) {
listener?.onLaunchAnimationEnd()
iCallback?.invoke()
if (DEBUG_LAUNCH_ANIMATION) {
Log.d(
TAG,
"Calling controller.onLaunchAnimationEnd(isExpandingFullyAbove=" +
"$isExpandingFullyAbove) [controller=$delegate]"
)
}
delegate.onLaunchAnimationEnd(isExpandingFullyAbove)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment