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

Commit d968bdbc authored by Tony Wickham's avatar Tony Wickham Committed by Android (Google) Code Review
Browse files

Merge changes from topic "am-6d9ca486-65ce-4826-896a-aaf2c33186f9" into...

Merge changes from topic "am-6d9ca486-65ce-4826-896a-aaf2c33186f9" into ub-launcher3-edmonton-polish

* changes:
  [automerger] Reapply back button alpha at end of state animation am: 5273b695
  Reapply back button alpha at end of state animation
parents 13c69a62 ac5a07cb
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);
        }
    }