diff options
author | Winson Chung <winsonc@google.com> | 2014-05-29 12:03:33 -0700 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2014-05-29 12:30:26 -0700 |
commit | 24cf152483c03dc446875c8d6440348174317bc5 (patch) | |
tree | 72f76220a9b7fbd38c029dc0f8c671e0b225156b /packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java | |
parent | fb816fc701770f95f7d1ebc0ab5ee19584798b74 (diff) | |
download | frameworks_base-24cf152483c03dc446875c8d6440348174317bc5.zip frameworks_base-24cf152483c03dc446875c8d6440348174317bc5.tar.gz frameworks_base-24cf152483c03dc446875c8d6440348174317bc5.tar.bz2 |
Updating task view style, fixing performance on enter-recents animation.
Change-Id: I42ca9296170a93a14184ae8963abbd3f0494e503
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java b/packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java index befe8b4..df387c1 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java +++ b/packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java @@ -98,6 +98,9 @@ public class RecentsActivity extends Activity implements RecentsView.RecentsView // If there are no filtered stacks, dismiss recents and launch the first task dismissRecentsIfVisible(); } + } else if (action.equals(RecentsService.ACTION_START_ENTER_ANIMATION)) { + // Try and start the enter animation + mRecentsView.startOnEnterAnimation(); } } }; @@ -345,6 +348,7 @@ public class RecentsActivity extends Activity implements RecentsView.RecentsView IntentFilter filter = new IntentFilter(); filter.addAction(RecentsService.ACTION_HIDE_RECENTS_ACTIVITY); filter.addAction(RecentsService.ACTION_TOGGLE_RECENTS_ACTIVITY); + filter.addAction(RecentsService.ACTION_START_ENTER_ANIMATION); registerReceiver(mServiceBroadcastReceiver, filter); // Register the broadcast receiver to handle messages when the screen is turned off |