Ensure ArrowPopup alpha is set to 1 at the end of the opening animation.

The fade in animation doesn't change the alpha until the reveal animation
has started — so when animators are turned off the alpha never gets updated.

Bug: 124252507
Change-Id: I19bb77e16389ff870e05692b1aea8483033485ac
This commit is contained in:
Jon Miranda
2019-02-12 11:03:06 -08:00
parent 5a518a9b8b
commit 13d6dd8dc1
@@ -384,6 +384,7 @@ public abstract class ArrowPopup extends AbstractFloatingView {
openAnim.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
setAlpha(1f);
announceAccessibilityChanges();
mOpenCloseAnimator = null;
}