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

Commit 2551ef0f authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android (Google) Code Review
Browse files

Merge "Minot twaek of the NumberPicker"

parents 83955ef1 5203194f
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -549,13 +549,11 @@ public class NumberPicker extends LinearLayout {
        final ValueAnimator fadeScroller = ObjectAnimator.ofInt(this, "selectorPaintAlpha", 255, 0);
        final ObjectAnimator showIncrementButton = ObjectAnimator.ofFloat(mIncrementButton,
                "alpha", 0, 1);
        final ObjectAnimator showInputText = ObjectAnimator.ofFloat(mInputText,
                "alpha", 0, 1);
        final ObjectAnimator showDecrementButton = ObjectAnimator.ofFloat(mDecrementButton,
                "alpha", 0, 1);
        mShowInputControlsAnimator = new AnimatorSet();
        mShowInputControlsAnimator.playTogether(fadeScroller, showIncrementButton,
                showInputText, showDecrementButton);
                showDecrementButton);
        mShowInputControlsAnimator.addListener(new AnimatorListenerAdapter() {
            private boolean mCanceled = false;