diff --git a/packages/SystemUI/res/layout/qs_paged_page.xml b/packages/SystemUI/res/layout/qs_paged_page.xml index c366ceb4c1909..822b496c3aa2a 100644 --- a/packages/SystemUI/res/layout/qs_paged_page.xml +++ b/packages/SystemUI/res/layout/qs_paged_page.xml @@ -21,5 +21,6 @@ android:layout_height="match_parent" android:paddingStart="@dimen/qs_tiles_page_horizontal_margin" android:paddingEnd="@dimen/qs_tiles_page_horizontal_margin" + android:focusable="false" android:clipChildren="false" android:clipToPadding="false" /> diff --git a/packages/SystemUI/src/com/android/systemui/qs/TileLayout.java b/packages/SystemUI/src/com/android/systemui/qs/TileLayout.java index 7ee4047566339..269a158c6b87c 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/TileLayout.java +++ b/packages/SystemUI/src/com/android/systemui/qs/TileLayout.java @@ -55,7 +55,6 @@ public class TileLayout extends ViewGroup implements QSTileLayout { public TileLayout(Context context, @Nullable AttributeSet attrs) { super(context, attrs); - setFocusableInTouchMode(true); mLessRows = ((Settings.System.getInt(context.getContentResolver(), "qs_less_rows", 0) != 0) || useQsMediaPlayer(context)); updateResources();