OSDN Git Service

Merge "Fixing issue with numerous empty screens showing when adding a shortcut to...
authorWinson Chung <winsonc@google.com>
Fri, 4 Oct 2013 20:58:25 +0000 (20:58 +0000)
committerAndroid (Google) Code Review <android-gerrit@google.com>
Fri, 4 Oct 2013 20:58:25 +0000 (20:58 +0000)
src/com/android/launcher3/Launcher.java
src/com/android/launcher3/LauncherModel.java

index f3a02b3..e3e065e 100644 (file)
@@ -3664,6 +3664,9 @@ public class Launcher extends Activity
                     addAnimated.size(), true);
         }
 
+        // Remove the extra empty screen
+        mWorkspace.removeExtraEmptyScreen();
+
         if (!AppsCustomizePagedView.DISABLE_ALL_APPS &&
                 addedApps != null && mAppsCustomizeContent != null) {
             mAppsCustomizeContent.addApps(addedApps);
index edfc070..d1819e1 100644 (file)
@@ -318,8 +318,10 @@ public class LauncherModel extends BroadcastReceiver {
                             continue;
                         }
 
-                        // Add this icon to the db, creating a new page if necessary
-                        int startSearchPageIndex = 1;
+                        // Add this icon to the db, creating a new page if necessary.  If there
+                        // is only the empty page then we just add items to the first page.
+                        // Otherwise, we add them to the next pages.
+                        int startSearchPageIndex = workspaceScreens.isEmpty() ? 0 : 1;
                         Pair<Long, int[]> coords = LauncherModel.findNextAvailableIconSpace(context,
                                 name, launchIntent, startSearchPageIndex, workspaceScreens);
                         if (coords == null) {