summaryrefslogtreecommitdiffstats
path: root/src/com/android
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2011-02-04 03:13:41 -0800
committerMichael Jurka <mikejurka@google.com>2011-02-04 03:13:41 -0800
commit4c1085f8d94be2394dbce2866e94f60ac15ad109 (patch)
tree75934bbece41486718ea0c6846cd4dd8d89481f3 /src/com/android
parentcfdb096c31356a1d28a9c62b9f09b7c4b5e990f5 (diff)
downloadandroid_packages_apps_Trebuchet-4c1085f8d94be2394dbce2866e94f60ac15ad109.tar.gz
android_packages_apps_Trebuchet-4c1085f8d94be2394dbce2866e94f60ac15ad109.tar.bz2
android_packages_apps_Trebuchet-4c1085f8d94be2394dbce2866e94f60ac15ad109.zip
Fix spring-loaded mode
- Drop items in the right spot - When in spring loaded mode from All Apps, keep the workspaces visible (as is the intended behavior in All Apps)
Diffstat (limited to 'src/com/android')
-rw-r--r--src/com/android/launcher2/Workspace.java20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/com/android/launcher2/Workspace.java b/src/com/android/launcher2/Workspace.java
index c9f2f6c3d..7e91500a7 100644
--- a/src/com/android/launcher2/Workspace.java
+++ b/src/com/android/launcher2/Workspace.java
@@ -224,6 +224,9 @@ public class Workspace extends SmoothPagedView
final static float MAX_SWIPE_ANGLE = (float) Math.PI / 3;
final static float TOUCH_SLOP_DAMPING_FACTOR = 4;
+ int mSpringLoadedDropX;
+ int mSpringLoadedDropY;
+
/**
* Used to inflate the Workspace from XML.
*
@@ -1316,6 +1319,14 @@ public class Workspace extends SmoothPagedView
// we use this to shrink the workspace for the all apps view and the customize view
public void shrink(ShrinkState shrinkState, boolean animated) {
+ // In the launcher interaction model, we're never in the state where we're shrunken and
+ // visible in the bottom of the screen, and then want to fade to being invisible.
+ // After spring loaded mode ends, this method was getting called twice, the first time
+ // with BOTTOM_VISIBLE (what we want) and a second time with BOTTOM_INVISIBLE (not
+ // what we want). As a temporary solution, we just change the second call to BOTTOM_VISIBLE
+ if (mIsSmall && mShrinkState == ShrinkState.BOTTOM_VISIBLE) {
+ shrinkState = ShrinkState.BOTTOM_VISIBLE;
+ }
if (mFirstLayout) {
// (mFirstLayout == "first layout has not happened yet")
// if we get a call to shrink() as part of our initialization (for example, if
@@ -2670,6 +2681,8 @@ public class Workspace extends SmoothPagedView
final View child = (mDragInfo == null) ? null : mDragInfo.cell;
float[] localOrigin = { originX, originY };
mapPointFromSelfToChild(mDragTargetLayout, localOrigin, null);
+ mSpringLoadedDropX = (int) localOrigin[0];
+ mSpringLoadedDropY = (int) localOrigin[1];
mDragTargetLayout.visualizeDropLocation(child, mDragOutline,
(int) localOrigin[0], (int) localOrigin[1], item.spanX, item.spanY);
}
@@ -2776,7 +2789,12 @@ public class Workspace extends SmoothPagedView
mTargetCell = new int[2];
if (x != -1 && y != -1) {
// when dragging and dropping, just find the closest free spot
- cellLayout.findNearestVacantArea(x, y, 1, 1, mTargetCell);
+
+ // When we get a drop in Spring Loaded mode, at this point we've already called
+ // onDragExit, which starts us shrinking again and screws up the transforms we
+ // need to get the right value. Instead, as a temporary solution, we've saved the
+ // proper point, mSpringLoadedDropX/Y, from the last onDragOver
+ cellLayout.findNearestVacantArea(mSpringLoadedDropX, mSpringLoadedDropY, 1, 1, mTargetCell);
} else {
cellLayout.findCellForSpan(mTargetCell, 1, 1);
}