Glimpse: Use a FrameLayout for ReelsFragment

Change-Id: I593e0b03c715e95d04dbc5f302a3ea812b046d67
This commit is contained in:
Sebastiano Barezzi 2023-08-20 04:30:08 +02:00
parent 6a9c18eae7
commit dbdf861d07
No known key found for this signature in database
GPG Key ID: 763BD3AE91A7A13F
1 changed files with 4 additions and 9 deletions

View File

@ -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>