Fix scroll behavior in library

This commit is contained in:
Bnyro 2023-01-05 16:55:02 +01:00
parent c04dc67140
commit 6832e97b4b

View File

@ -12,7 +12,7 @@
android:layout_height="match_parent"
android:layout_margin="10dp">
<ScrollView
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
@ -112,7 +112,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/playlist_recView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false"/>
</LinearLayout>
@ -145,14 +146,15 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/bookmarks_recView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false"/>
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
</LinearLayout>
</ScrollView>
</androidx.core.widget.NestedScrollView>
</com.github.libretube.ui.views.CustomSwipeToRefresh>
<com.google.android.material.floatingactionbutton.FloatingActionButton