Merge pull request #2593 from Bnyro/master

Fix scroll behavior in library
This commit is contained in:
Bnyro 2023-01-05 16:55:25 +01:00 committed by GitHub
commit 762a309fce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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