GamingMode: Make menu QS and AppTile centered

Since we're already have menu that can wrap content, let's make it
centered for better visual appearance.

Signed-off-by: Nauval Rizky <enuma.alrizky@gmail.com>
diff --git a/app/src/main/res/layout/gaming_overlay_layout.xml b/app/src/main/res/layout/gaming_overlay_layout.xml
index 7d4356f..5b1f302 100644
--- a/app/src/main/res/layout/gaming_overlay_layout.xml
+++ b/app/src/main/res/layout/gaming_overlay_layout.xml
@@ -35,25 +35,27 @@
             -->
 
             <HorizontalScrollView
-                android:layout_width="match_parent"
-                android:layout_height="match_parent"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_gravity="center"
                 android:padding="4dp">
 
                 <org.exthmui.game.ui.QuickSettingsView
                     android:id="@+id/gaming_qs"
-                    android:layout_width="match_parent"
-                    android:layout_height="match_parent" />
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content" />
             </HorizontalScrollView>
 
             <HorizontalScrollView
-                android:layout_width="match_parent"
-                android:layout_height="match_parent"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_gravity="center"
                 android:padding="4dp">
 
                 <org.exthmui.game.ui.QuickStartAppView
                     android:id="@+id/gaming_qsapp"
-                    android:layout_width="match_parent"
-                    android:layout_height="match_parent" />
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content" />
             </HorizontalScrollView>
 
             <org.exthmui.game.ui.GamingPerformanceView