Slow down text scale animation

Bug: 15562035
Change-Id: I1894719f5066a0a2f4ac7db4e4d2d019b5421df4
diff --git a/src/com/android/calculator2/CalculatorActivity.java b/src/com/android/calculator2/CalculatorActivity.java
index cd386eb..88f495d 100644
--- a/src/com/android/calculator2/CalculatorActivity.java
+++ b/src/com/android/calculator2/CalculatorActivity.java
@@ -248,7 +248,7 @@
                 ObjectAnimator.ofFloat(textView, View.SCALE_Y, textScale, 1.0f),
                 ObjectAnimator.ofFloat(textView, View.TRANSLATION_X, translationX, 0.0f),
                 ObjectAnimator.ofFloat(textView, View.TRANSLATION_Y, translationY, 0.0f));
-        animatorSet.setDuration(getResources().getInteger(android.R.integer.config_shortAnimTime));
+        animatorSet.setDuration(getResources().getInteger(android.R.integer.config_mediumAnimTime));
         animatorSet.setInterpolator(new AccelerateDecelerateInterpolator());
         animatorSet.start();
     }