Loading packages/SystemUI/res/layout/recents_stack_action_button.xml +0 −2 Original line number Diff line number Diff line Loading @@ -27,8 +27,6 @@ android:textSize="14sp" android:textColor="#FFFFFF" android:textAllCaps="true" android:drawableStart="@drawable/ic_history" android:drawablePadding="6dp" android:shadowColor="#99000000" android:shadowDx="0" android:shadowDy="2" Loading packages/SystemUI/res/values/config.xml +3 −0 Original line number Diff line number Diff line Loading @@ -153,6 +153,9 @@ <!-- The animation duration for animating the removal of a task view. --> <integer name="recents_animate_task_view_remove_duration">175</integer> <!-- The base animation duration for animating the removal of all task views. --> <integer name="recents_animate_task_views_remove_all_duration">300</integer> <!-- The animation duration for scrolling the stack to a particular item. --> <integer name="recents_animate_task_stack_scroll_duration">200</integer> Loading packages/SystemUI/res/values/dimens.xml +3 −1 Original line number Diff line number Diff line Loading @@ -574,10 +574,12 @@ <dimen name="recents_layout_bottom_margin">16dp</dimen> <dimen name="recents_layout_side_margin_phone">16dp</dimen> <dimen name="recents_layout_side_margin_tablet">48dp</dimen> <dimen name="recents_layout_side_margin_tablet_docked">16dp</dimen> <dimen name="recents_layout_side_margin_tablet_xlarge">64dp</dimen> <dimen name="recents_layout_side_margin_tablet_xlarge_docked">16dp</dimen> <!-- The height between the top margin and the top of the focused task. --> <dimen name="recents_layout_top_peek_size">56dp</dimen> <dimen name="recents_layout_top_peek_size">48dp</dimen> <!-- The height between the bottom margin and the top of task in front of the focused task. --> <dimen name="recents_layout_bottom_peek_size">56dp</dimen> Loading packages/SystemUI/src/com/android/systemui/Interpolators.java +2 −0 Original line number Diff line number Diff line Loading @@ -17,6 +17,7 @@ package com.android.systemui; import android.view.animation.AccelerateDecelerateInterpolator; import android.view.animation.AccelerateInterpolator; import android.view.animation.DecelerateInterpolator; import android.view.animation.Interpolator; import android.view.animation.LinearInterpolator; Loading @@ -32,6 +33,7 @@ public class Interpolators { public static final Interpolator ALPHA_IN = new PathInterpolator(0.4f, 0f, 1f, 1f); public static final Interpolator ALPHA_OUT = new PathInterpolator(0f, 0f, 0.8f, 1f); public static final Interpolator LINEAR = new LinearInterpolator(); public static final Interpolator ACCELERATE = new AccelerateInterpolator(); public static final Interpolator ACCELERATE_DECELERATE = new AccelerateDecelerateInterpolator(); public static final Interpolator DECELERATE_QUINT = new DecelerateInterpolator(2.5f); Loading packages/SystemUI/src/com/android/systemui/recents/RecentsDebugFlags.java +1 −1 Original line number Diff line number Diff line Loading @@ -36,7 +36,7 @@ public class RecentsDebugFlags implements TunerService.Tunable { // Enables the task affiliations public static final boolean EnableAffiliatedTaskGroups = false; // TODO: To be repurposed public static final boolean EnableStackActionButton = false; public static final boolean EnableStackActionButton = true; // Overrides the Tuner flags and enables the timeout private static final boolean EnableFastToggleTimeout = false; // Overrides the Tuner flags and enables the paging via the Recents button Loading Loading
packages/SystemUI/res/layout/recents_stack_action_button.xml +0 −2 Original line number Diff line number Diff line Loading @@ -27,8 +27,6 @@ android:textSize="14sp" android:textColor="#FFFFFF" android:textAllCaps="true" android:drawableStart="@drawable/ic_history" android:drawablePadding="6dp" android:shadowColor="#99000000" android:shadowDx="0" android:shadowDy="2" Loading
packages/SystemUI/res/values/config.xml +3 −0 Original line number Diff line number Diff line Loading @@ -153,6 +153,9 @@ <!-- The animation duration for animating the removal of a task view. --> <integer name="recents_animate_task_view_remove_duration">175</integer> <!-- The base animation duration for animating the removal of all task views. --> <integer name="recents_animate_task_views_remove_all_duration">300</integer> <!-- The animation duration for scrolling the stack to a particular item. --> <integer name="recents_animate_task_stack_scroll_duration">200</integer> Loading
packages/SystemUI/res/values/dimens.xml +3 −1 Original line number Diff line number Diff line Loading @@ -574,10 +574,12 @@ <dimen name="recents_layout_bottom_margin">16dp</dimen> <dimen name="recents_layout_side_margin_phone">16dp</dimen> <dimen name="recents_layout_side_margin_tablet">48dp</dimen> <dimen name="recents_layout_side_margin_tablet_docked">16dp</dimen> <dimen name="recents_layout_side_margin_tablet_xlarge">64dp</dimen> <dimen name="recents_layout_side_margin_tablet_xlarge_docked">16dp</dimen> <!-- The height between the top margin and the top of the focused task. --> <dimen name="recents_layout_top_peek_size">56dp</dimen> <dimen name="recents_layout_top_peek_size">48dp</dimen> <!-- The height between the bottom margin and the top of task in front of the focused task. --> <dimen name="recents_layout_bottom_peek_size">56dp</dimen> Loading
packages/SystemUI/src/com/android/systemui/Interpolators.java +2 −0 Original line number Diff line number Diff line Loading @@ -17,6 +17,7 @@ package com.android.systemui; import android.view.animation.AccelerateDecelerateInterpolator; import android.view.animation.AccelerateInterpolator; import android.view.animation.DecelerateInterpolator; import android.view.animation.Interpolator; import android.view.animation.LinearInterpolator; Loading @@ -32,6 +33,7 @@ public class Interpolators { public static final Interpolator ALPHA_IN = new PathInterpolator(0.4f, 0f, 1f, 1f); public static final Interpolator ALPHA_OUT = new PathInterpolator(0f, 0f, 0.8f, 1f); public static final Interpolator LINEAR = new LinearInterpolator(); public static final Interpolator ACCELERATE = new AccelerateInterpolator(); public static final Interpolator ACCELERATE_DECELERATE = new AccelerateDecelerateInterpolator(); public static final Interpolator DECELERATE_QUINT = new DecelerateInterpolator(2.5f); Loading
packages/SystemUI/src/com/android/systemui/recents/RecentsDebugFlags.java +1 −1 Original line number Diff line number Diff line Loading @@ -36,7 +36,7 @@ public class RecentsDebugFlags implements TunerService.Tunable { // Enables the task affiliations public static final boolean EnableAffiliatedTaskGroups = false; // TODO: To be repurposed public static final boolean EnableStackActionButton = false; public static final boolean EnableStackActionButton = true; // Overrides the Tuner flags and enables the timeout private static final boolean EnableFastToggleTimeout = false; // Overrides the Tuner flags and enables the paging via the Recents button Loading