diff options
author | Winson Chung <winsonc@google.com> | 2014-04-14 18:57:14 -0700 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2014-04-14 18:57:14 -0700 |
commit | 1492646b792360945fba6bdcacc6aa7c19c6618e (patch) | |
tree | 4a0072e0340be9d2b8f7a58a2dd524f1e3a770dd /packages/SystemUI/res/values | |
parent | 9f9679d91ee5f067cd5dcbf4d780a1f5b522e4ba (diff) | |
download | frameworks_base-1492646b792360945fba6bdcacc6aa7c19c6618e.zip frameworks_base-1492646b792360945fba6bdcacc6aa7c19c6618e.tar.gz frameworks_base-1492646b792360945fba6bdcacc6aa7c19c6618e.tar.bz2 |
Adding stack dimming.
- Fixing case where the window scrim was always dark after loading recents with no tasks.
- Restoring rounded task rects and square aspect landscape tasks
Diffstat (limited to 'packages/SystemUI/res/values')
-rw-r--r-- | packages/SystemUI/res/values/config.xml | 2 | ||||
-rw-r--r-- | packages/SystemUI/res/values/dimens.xml | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/packages/SystemUI/res/values/config.xml b/packages/SystemUI/res/values/config.xml index 478c541..73e3e05 100644 --- a/packages/SystemUI/res/values/config.xml +++ b/packages/SystemUI/res/values/config.xml @@ -116,6 +116,8 @@ <integer name="recents_animate_task_bar_enter_duration">200</integer> <!-- The animation duration for animating in the info pane. --> <integer name="recents_animate_task_view_info_pane_duration">150</integer> + <!-- The minimum alpha for the dim applied to cards that go deeper into the stack. --> + <integer name="recents_max_task_stack_view_dim">96</integer> <!-- The maximum count of notifications on Keyguard. The rest will be collapsed in an overflow card. --> diff --git a/packages/SystemUI/res/values/dimens.xml b/packages/SystemUI/res/values/dimens.xml index 94d3541..a50b40f 100644 --- a/packages/SystemUI/res/values/dimens.xml +++ b/packages/SystemUI/res/values/dimens.xml @@ -239,6 +239,9 @@ <!-- The size of the activity icon in the recents task view. --> <dimen name="recents_task_view_activity_icon_size">60dp</dimen> + <!-- The radius of the rounded corners on a task view. --> + <dimen name="recents_task_view_rounded_corners_radius">2dp</dimen> + <!-- The amount of space a user has to scroll to dismiss any info panes. --> <dimen name="recents_task_stack_scroll_dismiss_info_pane_distance">50dp</dimen> |