summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRicardo Cerqueira <cyanogenmod@cerqueira.org>2013-05-24 04:04:30 -0700
committerGerrit Code Review <gerrit@cyanogenmod.org>2013-05-24 04:04:30 -0700
commit08888e987c53305b27381479e4a6957ae4fd9944 (patch)
tree98ce647015fb7afac851a06fb5e37c48a9b058be
parenta73e69c998ef939eb49a22b5efdfd67eebd83314 (diff)
parent6a198e07c88224bfbbed4db41e2e664554903c2b (diff)
downloadandroid_packages_apps_Trebuchet-08888e987c53305b27381479e4a6957ae4fd9944.tar.gz
android_packages_apps_Trebuchet-08888e987c53305b27381479e4a6957ae4fd9944.tar.bz2
android_packages_apps_Trebuchet-08888e987c53305b27381479e4a6957ae4fd9944.zip
Merge "Trebuchet: Fix double tab on home button" into cm-10.1
-rw-r--r--src/com/cyanogenmod/trebuchet/Launcher.java63
1 files changed, 55 insertions, 8 deletions
diff --git a/src/com/cyanogenmod/trebuchet/Launcher.java b/src/com/cyanogenmod/trebuchet/Launcher.java
index 7569573e7..7208a9ac1 100644
--- a/src/com/cyanogenmod/trebuchet/Launcher.java
+++ b/src/com/cyanogenmod/trebuchet/Launcher.java
@@ -258,6 +258,9 @@ public final class Launcher extends Activity
private boolean mWaitingForResult;
private boolean mOnResumeNeedsLoad;
+ private final List<Runnable> mNewPendingIntents = new ArrayList<Runnable>();
+ private boolean mOnNewIntentProcessing;
+
// Keep track of whether the user has left launcher
private static boolean sPausedFromUserAction = false;
@@ -1559,15 +1562,20 @@ public final class Launcher extends Activity
public void run() {
if (mWorkspace == null) {
// Can be cases where mWorkspace is null, this prevents a NPE
+ synchronized (mNewPendingIntents) {
+ mOnNewIntentProcessing = false;
+ }
return;
}
Folder openFolder = mWorkspace.getOpenFolder();
// In all these cases, only animate if we're already on home
mWorkspace.exitWidgetResizeMode();
+ boolean waitForPendingTranstions = true;
if (alreadyOnHome && mState == State.WORKSPACE && !mWorkspace.isTouchActive() &&
openFolder == null) {
mWorkspace.moveToDefaultScreen(true);
mHotseat.moveToDefaultScreen(true);
+ waitForPendingTranstions = false;
}
closeFolder();
@@ -1576,9 +1584,20 @@ public final class Launcher extends Activity
// If we are already on home, then just animate back to the workspace,
// otherwise, just wait until onResume to set the state back to Workspace
if (alreadyOnHome) {
- showWorkspace(true);
+ showWorkspace(true, new Runnable() {
+ @Override
+ public void run() {
+ processNewPendingIntents();
+ }
+ });
+ // onCompleteRunnable is not called if there is no pending animations
+ // so we must ensure that processNewPendingIntents is called.
+ if (!waitForPendingTranstions) {
+ processNewPendingIntents();
+ }
} else {
mOnResumeState = State.WORKSPACE;
+ processNewPendingIntents();
}
final View v = getWindow().peekDecorView();
@@ -1595,15 +1614,43 @@ public final class Launcher extends Activity
}
};
- if (alreadyOnHome && !mWorkspace.hasWindowFocus()) {
- // Delay processing of the intent to allow the status bar animation to finish
- // first in order to avoid janky animations.
- mWorkspace.postDelayed(processIntent, 350);
- } else {
- // Process the intent immediately.
- processIntent.run();
+ boolean markAsPending = false;
+ synchronized (mNewPendingIntents) {
+ if (mOnNewIntentProcessing) {
+ mNewPendingIntents.add(processIntent);
+ markAsPending = true;
+ } else {
+ mOnNewIntentProcessing = true;
+ }
}
+ if (!markAsPending) {
+ if (alreadyOnHome && !mWorkspace.hasWindowFocus()) {
+ // Delay processing of the intent to allow the status bar animation to finish
+ // first in order to avoid janky animations.
+ mWorkspace.postDelayed(processIntent, 350);
+ } else {
+ // Process the intent immediately.
+ processIntent.run();
+ }
+ }
+
+ }
+ }
+
+ private void processNewPendingIntents() {
+ Runnable newIntent = null;
+ synchronized (mNewPendingIntents) {
+ if (mNewPendingIntents.size() > 0) {
+ if (mWorkspace != null) {
+ newIntent = mNewPendingIntents.remove(0);
+ mWorkspace.post(newIntent);
+ } else {
+ mOnNewIntentProcessing = false;
+ }
+ } else {
+ mOnNewIntentProcessing = false;
+ }
}
}