diff options
author | Wale Ogunwale <ogunwale@google.com> | 2015-04-04 11:53:14 -0700 |
---|---|---|
committer | Wale Ogunwale <ogunwale@google.com> | 2015-04-04 15:38:32 -0700 |
commit | d351ada8f93415b09f7536c64e303d55c7b97680 (patch) | |
tree | 08ee8327a72d424e04a740b523baa23f44a3487f /packages | |
parent | 000957cef387dc7d08fc6563e2221e9023194984 (diff) | |
download | frameworks_base-d351ada8f93415b09f7536c64e303d55c7b97680.zip frameworks_base-d351ada8f93415b09f7536c64e303d55c7b97680.tar.gz frameworks_base-d351ada8f93415b09f7536c64e303d55c7b97680.tar.bz2 |
Dismiss recents to home without animation when resizing task.
Bug: 19946163
Change-Id: I87441e03556d775119f851f7ad49368fc1be49f7
Diffstat (limited to 'packages')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java | 6 | ||||
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/recents/RecentsResizeTaskDialog.java | 12 |
2 files changed, 12 insertions, 6 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java b/packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java index f014f09..fc8f8a5 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java +++ b/packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java @@ -345,6 +345,12 @@ public class RecentsActivity extends Activity implements RecentsView.RecentsView } } + /** Dismisses Recents directly to Home without transition animation. */ + void dismissRecentsToHomeWithoutTransitionAnimation() { + finish(); + overridePendingTransition(0, 0); + } + /** Dismisses Recents directly to Home if we currently aren't transitioning. */ boolean dismissRecentsToHome(boolean animated) { SystemServicesProxy ssp = RecentsTaskLoader.getInstance().getSystemServicesProxy(); diff --git a/packages/SystemUI/src/com/android/systemui/recents/RecentsResizeTaskDialog.java b/packages/SystemUI/src/com/android/systemui/recents/RecentsResizeTaskDialog.java index 4cd577d..b701e0b 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/RecentsResizeTaskDialog.java +++ b/packages/SystemUI/src/com/android/systemui/recents/RecentsResizeTaskDialog.java @@ -209,6 +209,10 @@ public class RecentsResizeTaskDialog extends DialogFragment { } } + // Get rid of the dialog. + dismiss(); + mRecentsActivity.dismissRecentsToHomeWithoutTransitionAnimation(); + // Resize all tasks beginning from the "oldest" one. for (int i = additionalTasks; i >= 0; --i) { if (mTasks[i] != null) { @@ -216,12 +220,8 @@ public class RecentsResizeTaskDialog extends DialogFragment { } } - // Get rid of the dialog. - dismiss(); - mRecentsActivity.dismissRecentsToHomeRaw(false); - - // Show tasks - beginning with the oldest so that the focus ends on the selected one. - // TODO: Remove this once issue b/19893373 is resolved. + // Show tasks as they might not be currently visible - beginning with the oldest so that + // the focus ends on the selected one. for (int i = additionalTasks; i >= 0; --i) { if (mTasks[i] != null) { mRecentsView.launchTask(mTasks[i]); |