Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2b691f67 authored by Federico Baron's avatar Federico Baron Committed by Android (Google) Code Review
Browse files

Merge "Add logs to debug b/318394698" into main

parents 82bf25b0 e5e37faa
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -93,6 +93,7 @@ import android.os.SystemProperties;
import android.os.UserHandle;
import android.provider.Settings;
import android.provider.Settings.Global;
import android.util.Log;
import android.util.Pair;
import android.util.Size;
import android.view.CrossWindowBlurListeners;
@@ -1764,6 +1765,7 @@ public class QuickstepTransitionManager implements OnDeviceProfileChangeListener
                RemoteAnimationTarget[] wallpaperTargets,
                RemoteAnimationTarget[] nonAppTargets,
                LauncherAnimationRunner.AnimationResult result) {
            Log.d("b/318394698", "AppLaunchAnimationRunner: onAnimationStart");
            AnimatorSet anim = new AnimatorSet();
            boolean launcherClosing =
                    launcherIsATargetWithMode(appTargets, MODE_CLOSING);
@@ -1799,6 +1801,7 @@ public class QuickstepTransitionManager implements OnDeviceProfileChangeListener

        @Override
        public void onAnimationCancelled() {
            Log.d("b/318394698", "AppLaunchAnimationRunner: onAnimationCancelled");
            mOnEndCallback.executeAllAndDestroy();
        }
    }
+2 −0
Original line number Diff line number Diff line
@@ -365,6 +365,8 @@ public class QuickstepLauncher extends Launcher {
    public RunnableList startActivitySafely(View v, Intent intent, ItemInfo item) {
        // Only pause is taskbar controller is not present until the transition (if it exists) ends
        mHotseatPredictionController.setPauseUIUpdate(getTaskbarUIController() == null);
        Log.d("b/318394698", "startActivitySafely being run, getTaskbarUIController is: "
                + getTaskbarUIController());
        RunnableList result = super.startActivitySafely(v, intent, item);
        if (result == null) {
            mHotseatPredictionController.setPauseUIUpdate(false);