OSDN Git Service

Part 1: Tweaking history transition to match design.
authorWinson <winsonc@google.com>
Tue, 26 Jan 2016 01:33:34 +0000 (17:33 -0800)
committerWinson <winsonc@google.com>
Wed, 27 Jan 2016 23:15:44 +0000 (15:15 -0800)
commit49df4209cf8a3ee6cf8e09edc14675028a4b1862
treec68621d1a33fe065bd405dcfd938fec125b28d9d
parentc0b2f09a92c7ba2437e390a0d075790d8ece3f3d
Part 1: Tweaking history transition to match design.

- Adding background scrim that can be controlled across transitions
  within recents.  As a result, we can remove the status bar scrim.
- Moving the history view into the RecentsView now that it animates in
  parallel with the task stack
- Transition home from history no longer goes back to stack view first
- Removing some extra allocations when going into history and loading
  tasks

Change-Id: I665baefcdd619de5e9366923eaaf4c558261141a
26 files changed:
packages/SystemUI/res/drawable/ic_history.xml [new file with mode: 0644]
packages/SystemUI/res/layout/recents.xml
packages/SystemUI/res/layout/recents_empty.xml
packages/SystemUI/res/layout/recents_history.xml
packages/SystemUI/res/layout/recents_history_button.xml
packages/SystemUI/res/layout/recents_history_date.xml
packages/SystemUI/res/layout/recents_history_task.xml
packages/SystemUI/res/values/strings.xml
packages/SystemUI/res/values/styles.xml
packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java
packages/SystemUI/src/com/android/systemui/recents/events/activity/HideHistoryEvent.java
packages/SystemUI/src/com/android/systemui/recents/events/activity/ShowHistoryButtonEvent.java
packages/SystemUI/src/com/android/systemui/recents/events/activity/ShowHistoryEvent.java
packages/SystemUI/src/com/android/systemui/recents/events/activity/ToggleHistoryEvent.java [new file with mode: 0644]
packages/SystemUI/src/com/android/systemui/recents/events/ui/ResetBackgroundScrimEvent.java [new file with mode: 0644]
packages/SystemUI/src/com/android/systemui/recents/events/ui/UpdateBackgroundScrimEvent.java [new file with mode: 0644]
packages/SystemUI/src/com/android/systemui/recents/history/RecentsHistoryAdapter.java
packages/SystemUI/src/com/android/systemui/recents/history/RecentsHistoryView.java
packages/SystemUI/src/com/android/systemui/recents/model/RecentsTaskLoadPlan.java
packages/SystemUI/src/com/android/systemui/recents/views/AnimateableViewBounds.java
packages/SystemUI/src/com/android/systemui/recents/views/RecentsView.java
packages/SystemUI/src/com/android/systemui/recents/views/SystemBarScrimViews.java
packages/SystemUI/src/com/android/systemui/recents/views/TaskStackAnimationHelper.java
packages/SystemUI/src/com/android/systemui/recents/views/TaskStackLayoutAlgorithm.java
packages/SystemUI/src/com/android/systemui/recents/views/TaskStackView.java
packages/SystemUI/src/com/android/systemui/recents/views/TaskViewAnimation.java