Glimpse: Use a FrameLayout for ReelsFragment
Change-Id: I593e0b03c715e95d04dbc5f302a3ea812b046d67
diff --git a/app/src/main/res/layout/fragment_reels.xml b/app/src/main/res/layout/fragment_reels.xml
index 6c7539b..aa6bad2 100644
--- a/app/src/main/res/layout/fragment_reels.xml
+++ b/app/src/main/res/layout/fragment_reels.xml
@@ -3,8 +3,7 @@
SPDX-FileCopyrightText: 2023 The LineageOS Project
SPDX-License-Identifier: Apache-2.0
-->
-<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -13,11 +12,7 @@
<include
android:id="@+id/reelsRecyclerView"
layout="@layout/thumbnails_recycler_view"
- android:layout_width="0dp"
- android:layout_height="0dp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" />
-</androidx.constraintlayout.widget.ConstraintLayout>
+</FrameLayout>