diff options
author | Craig Mautner <cmautner@google.com> | 2014-05-20 19:17:54 -0700 |
---|---|---|
committer | Craig Mautner <cmautner@google.com> | 2014-05-24 09:50:37 -0700 |
commit | e67a784eb2c914c04c62ea5dfa1e3751df5582cc (patch) | |
tree | 6d729bf0864128a7b508d71cf93b9dacad233011 /core | |
parent | 21d24a21ea4aaadd78e73de54168e8a8a8973e4d (diff) | |
download | frameworks_base-e67a784eb2c914c04c62ea5dfa1e3751df5582cc.zip frameworks_base-e67a784eb2c914c04c62ea5dfa1e3751df5582cc.tar.gz frameworks_base-e67a784eb2c914c04c62ea5dfa1e3751df5582cc.tar.bz2 |
Modify task navigation to return to recent tasks. DO NOT MERGE
Tasks launched from the recent task list will now return to the list
when they are finished. Also tasks that are launched from the
notification panel and services will now return to the list,
provided that the launcher is not front and center when they are
launched.
Fixes bug 14464114.
Change-Id: Ic0d3731fc7248d1eaa80e5ee399753d80e80c979
Diffstat (limited to 'core')
-rw-r--r-- | core/java/android/view/WindowManagerPolicy.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/view/WindowManagerPolicy.java b/core/java/android/view/WindowManagerPolicy.java index 4fde1e4..1bb20c9 100644 --- a/core/java/android/view/WindowManagerPolicy.java +++ b/core/java/android/view/WindowManagerPolicy.java @@ -1144,6 +1144,12 @@ public interface WindowManagerPolicy { public void setLastInputMethodWindowLw(WindowState ime, WindowState target); /** + * Show the recents task list app. + * @hide + */ + public void showRecentApps(); + + /** * @return The current height of the input method window. */ public int getInputMethodWindowVisibleHeightLw(); |