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

Commit 5dd259bf authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Password bouncer - Fix IME with no view" into sc-dev am: ce4baef6

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/13630527

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ie98b1e87a807f4e432c208e3433d1a78725face9
parents 4f733f1f ce4baef6
Loading
Loading
Loading
Loading
+11 −2
Original line number Diff line number Diff line
@@ -136,14 +136,23 @@ public class KeyguardPasswordView extends KeyguardAbsKeyInputView {

    @Override
    public void startAppearAnimation() {
        // Reset state, and let IME animation reveal the view as it slides in
        // Reset state, and let IME animation reveal the view as it slides in, if one exists.
        // It is possible for an IME to have no view, so provide a default animation since no
        // calls to animateForIme would occur
        setAlpha(0f);
        animate()
            .alpha(1f)
            .setDuration(500)
            .setStartDelay(300)
            .start();

        setTranslationY(0f);
    }

    @Override
    public void animateForIme(float interpolatedFraction) {
        setAlpha(interpolatedFraction);
        animate().cancel();
        setAlpha(Math.max(interpolatedFraction, getAlpha()));
    }

    @Override