Big change successful; main view now uses RecyclerView for both horizontal and vertical scrolling, as using LinearLayout caused a duplication glitch on the first and last page

This commit is contained in:
denizk0461
2023-04-08 15:44:07 +02:00
parent 76370d78a8
commit 9accebc68c
3 changed files with 53 additions and 45 deletions
+4 -5
View File
@@ -5,12 +5,11 @@
android:layout_height="match_parent"
android:scrollbars="vertical">
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/page_layout"
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/page_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_height="match_parent">
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.recyclerview.widget.RecyclerView>
</androidx.core.widget.NestedScrollView>