OSDN Git Service

Adding history view.
authorWinson <winsonc@google.com>
Sat, 21 Nov 2015 00:00:45 +0000 (16:00 -0800)
committerWinson <winsonc@google.com>
Wed, 25 Nov 2015 19:42:19 +0000 (11:42 -0800)
commitc29ff0025bf0b1f43b34fe3e2dd6f043b61421ef
tree93ea71128ecb6fb945c7144678babf4771072cc0
parent7afe8c900244e37e70863f56a86bb27ead45f9a1
Adding history view.

- Initial changes to show a history view within Overview (behind tuner
  flag)
- Restoring the task view dim in the stack

Change-Id: I0503d11768736c86f3145942404391dfacd0ddd6
23 files changed:
packages/SystemUI/Android.mk
packages/SystemUI/res/layout/recents.xml
packages/SystemUI/res/layout/recents_history.xml [new file with mode: 0644]
packages/SystemUI/res/layout/recents_history_button.xml [new file with mode: 0644]
packages/SystemUI/res/layout/recents_history_date.xml [new file with mode: 0644]
packages/SystemUI/res/layout/recents_history_task.xml [new file with mode: 0644]
packages/SystemUI/res/values/config.xml
packages/SystemUI/res/values/strings.xml
packages/SystemUI/res/xml/tuner_prefs.xml
packages/SystemUI/src/com/android/systemui/recents/RecentsActivity.java
packages/SystemUI/src/com/android/systemui/recents/RecentsDebugFlags.java
packages/SystemUI/src/com/android/systemui/recents/events/activity/HideHistoryButtonEvent.java [new file with mode: 0644]
packages/SystemUI/src/com/android/systemui/recents/events/activity/HideHistoryEvent.java [new file with mode: 0644]
packages/SystemUI/src/com/android/systemui/recents/events/activity/ShowHistoryButtonEvent.java [new file with mode: 0644]
packages/SystemUI/src/com/android/systemui/recents/events/activity/ShowHistoryEvent.java [new file with mode: 0644]
packages/SystemUI/src/com/android/systemui/recents/history/RecentsHistoryAdapter.java [new file with mode: 0644]
packages/SystemUI/src/com/android/systemui/recents/history/RecentsHistoryView.java [new file with mode: 0644]
packages/SystemUI/src/com/android/systemui/recents/views/RecentsView.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/TaskStackViewScroller.java
packages/SystemUI/src/com/android/systemui/recents/views/TaskView.java
packages/SystemUI/tests/Android.mk