summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/Workspace.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/Workspace.java')
-rw-r--r--src/com/android/launcher3/Workspace.java18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/com/android/launcher3/Workspace.java b/src/com/android/launcher3/Workspace.java
index e935c99af..478b261e9 100644
--- a/src/com/android/launcher3/Workspace.java
+++ b/src/com/android/launcher3/Workspace.java
@@ -1337,7 +1337,7 @@ public class Workspace extends SmoothPagedView
float mAnimationStartOffset;
private final int ANIMATION_DURATION = 250;
// Don't use all the wallpaper for parallax until you have at least this many pages
- private final int MIN_PARALLAX_PAGE_SPAN = 3;
+ private final int MIN_PARALLAX_PAGE_SPAN = 2;
int mNumScreens;
boolean mCompletedInitialOffset;
@@ -1390,8 +1390,8 @@ public class Workspace extends SmoothPagedView
}
private float wallpaperOffsetForCurrentScroll() {
- if (getChildCount() <= 1) {
- return 0;
+ if (getNumScreensExcludingEmptyAndCustom() <= 1) {
+ return mWallpaperIsLiveWallpaper ? 0 : 0.5f;
}
// Exclude the leftmost page
@@ -2767,6 +2767,18 @@ public class Workspace extends SmoothPagedView
v.getWidth() + padding, v.getHeight() + padding, Bitmap.Config.ARGB_8888);
}
+ // Special case for dragging All Apps button
+ if (v.getTag() instanceof ItemInfo) {
+ ItemInfo info = (ItemInfo) v.getTag();
+ if (info.itemType == LauncherSettings.Favorites.ITEM_TYPE_ALLAPPS) {
+ // Special case for all apps icon
+ Drawable d = ((TextView) v).getCompoundDrawables()[1];
+ Rect r = d.getBounds();
+ b = Bitmap.createBitmap(r.width() + padding,
+ r.height() + padding, Bitmap.Config.ARGB_8888);
+ }
+ }
+
canvas.setBitmap(b);
drawDragView(v, canvas, padding, true);
canvas.setBitmap(null);