Merge commit 'cd32d33296bfa5c9dc25c817bee8640730dd3e65' into eclair-mr2-plus-aosp * commit 'cd32d33296bfa5c9dc25c817bee8640730dd3e65': passion - fix 2176920 - all apps cleared after deleting folder
This commit is contained in:
@@ -1923,7 +1923,6 @@ public final class Launcher extends Activity
|
||||
* Implementation of the method from LauncherModel.Callbacks.
|
||||
*/
|
||||
public void bindAllApplications(ArrayList<ApplicationInfo> apps) {
|
||||
Log.d(LOG_TAG, "got info for " + apps.size() + " apps");
|
||||
mAllAppsList = apps;
|
||||
mAllAppsGrid.setApps(mAllAppsList);
|
||||
}
|
||||
|
||||
@@ -523,7 +523,9 @@ public class LauncherModel {
|
||||
}
|
||||
|
||||
// Bind all apps
|
||||
bindAllApps();
|
||||
if (allAppsDirty) {
|
||||
bindAllApps();
|
||||
}
|
||||
|
||||
// Clear out this reference, otherwise we end up holding it until all of the
|
||||
// callback runnables are done.
|
||||
@@ -915,14 +917,15 @@ public class LauncherModel {
|
||||
mAllAppsList.added = new ArrayList();
|
||||
mHandler.post(new Runnable() {
|
||||
public void run() {
|
||||
long t = SystemClock.uptimeMillis();
|
||||
final long t = SystemClock.uptimeMillis();
|
||||
final int count = results.size();
|
||||
|
||||
Callbacks callbacks = tryGetCallbacks();
|
||||
if (callbacks != null) {
|
||||
callbacks.bindAllApplications(results);
|
||||
}
|
||||
|
||||
Log.d(TAG, "bound app icons in "
|
||||
Log.d(TAG, "bound app " + count + " icons in "
|
||||
+ (SystemClock.uptimeMillis()-t) + "ms");
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user