Fix workspace shrinking bug caused by change in animations

Change-Id: Ia34ae2a6cb863da28d319c46a95f61536cd31ade
This commit is contained in:
Patrick Dubroy
2010-08-10 18:11:03 -07:00
parent 925b481acb
commit a67e867db9
+4
View File
@@ -1124,6 +1124,8 @@ public class Workspace extends ViewGroup
Sequencer s = new Sequencer();
for (int i = 0; i < screenCount; i++) {
CellLayout cl = (CellLayout) getChildAt(i);
cl.setPivotX(0.0f);
cl.setPivotY(0.0f);
if (animated) {
final int duration = res.getInteger(R.integer.config_workspaceShrinkTime);
s.playTogether(
@@ -1187,6 +1189,8 @@ public class Workspace extends ViewGroup
final int duration = getResources().getInteger(R.integer.config_workspaceUnshrinkTime);
for (int i = 0; i < screenCount; i++) {
final CellLayout cl = (CellLayout)getChildAt(i);
cl.setPivotX(0.0f);
cl.setPivotY(0.0f);
if (animated) {
s.playTogether(
new PropertyAnimator(duration, cl, "translationX", 0.0f),