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

Commit ac5a07cb authored by Android Build Merger (Role)'s avatar Android Build Merger (Role)
Browse files

[automerger] Reapply back button alpha at end of state animation am: 5273b695

Change-Id: Ic83348b0559743b334c5989d014987f144c390f1
parents 34838cf5 5273b695
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@

package com.android.launcher3.uioverrides;

import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.ValueAnimator;

import com.android.launcher3.Launcher;
@@ -56,6 +58,13 @@ public class BackButtonAlphaHandler implements LauncherStateManager.StateHandler
                final float alpha = (float) valueAnimator.getAnimatedValue();
                mOverviewInteractionState.setBackButtonAlpha(alpha, false);
            });
            anim.addListener(new AnimatorListenerAdapter() {
                @Override
                public void onAnimationEnd(Animator animation) {
                    // Reapply the final alpha in case some state (e.g. window focus) changed.
                    UiFactory.onLauncherStateOrFocusChanged(mLauncher);
                }
            });
            builder.play(anim);
        }
    }