diff --git a/go/quickstep/res/layout/icon_recents_root_view.xml b/go/quickstep/res/layout/icon_recents_root_view.xml index ea6fbc2ef1..b64b7fdad6 100644 --- a/go/quickstep/res/layout/icon_recents_root_view.xml +++ b/go/quickstep/res/layout/icon_recents_root_view.xml @@ -24,7 +24,8 @@ android:layout_width="@dimen/recents_list_width" android:layout_height="match_parent" android:layout_gravity="center_horizontal" - android:scrollbars="none"/> + android:scrollbars="none" + android:clipToPadding="false"/> CONTENT_ALPHA = new FloatProperty("contentAlpha") { @@ -518,4 +519,9 @@ public final class IconRecentsView extends FrameLayout { }); mLayoutAnimation.start(); } + + @Override + public void setInsets(Rect insets) { + mTaskRecyclerView.setPadding(insets.left, insets.top, insets.right, insets.bottom); + } }