Fix RecyclerView not scrollable in fragment_flair_bottom_sheet.xml.

This commit is contained in:
Docile-Alligator 2025-10-20 17:44:47 -04:00
parent 0eda465696
commit 69bf9fd6e0

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.core.widget.NestedScrollView 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"
@ -37,10 +37,10 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view_bottom_sheet_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
app:layoutManager="ml.docilealligator.infinityforreddit.customviews.LinearLayoutManagerBugFixed"
android:nestedScrollingEnabled="false" />
</LinearLayout>
</ScrollView>
</androidx.core.widget.NestedScrollView>