am faf22e15: Ensure that rearranged widgets return to translationY=0

* commit 'faf22e15f18479ee84ef15869694cd581df38dc5':
  Ensure that rearranged widgets return to translationY=0
This commit is contained in:
Brandon Keely
2012-05-10 17:07:49 -07:00
committed by Android Git Automerger
+1 -1
View File
@@ -2010,7 +2010,7 @@ public class CellLayout extends ViewGroup {
ObjectAnimator.ofFloat(child, "scaleX", 1f),
ObjectAnimator.ofFloat(child, "scaleY", 1f),
ObjectAnimator.ofFloat(child, "translationX", 0f),
ObjectAnimator.ofFloat(child, "translationX", 0f)
ObjectAnimator.ofFloat(child, "translationY", 0f)
);
s.setDuration(REORDER_ANIMATION_DURATION);
s.setInterpolator(new android.view.animation.DecelerateInterpolator(1.5f));