feat: Show vertical scrollbars on scrollable lists (#96)

Display normal Android (i.e., fading) scrollbars when the user scrolls
in lists.
This commit is contained in:
Nik Clayton 2023-09-26 15:57:35 +02:00 committed by GitHub
parent f71a5e1237
commit 11fecb1914
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
20 changed files with 32 additions and 18 deletions

View File

@ -4300,7 +4300,7 @@
errorLine2=" ~~~~~~~~">
<location
file="src/main/res/layout/item_conversation.xml"
line="233"
line="234"
column="6"/>
</issue>

View File

@ -22,7 +22,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
<app.pachli.view.BackgroundMessageView
android:id="@+id/statusView"

View File

@ -18,7 +18,6 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
@ -40,7 +39,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
<app.pachli.view.BackgroundMessageView
android:id="@+id/statusView"

View File

@ -28,7 +28,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/announcementsList"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
<app.pachli.view.BackgroundMessageView
android:id="@+id/errorMessageView"

View File

@ -14,6 +14,7 @@
android:id="@+id/draftsRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<app.pachli.view.BackgroundMessageView

View File

@ -24,6 +24,7 @@
android:id="@+id/filtersList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
<app.pachli.view.BackgroundMessageView

View File

@ -14,6 +14,7 @@
android:id="@+id/followedTagsView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
tools:itemCount="5"
tools:listitem="@layout/item_followed_hashtag"
app:layout_behavior="@string/appbar_scrolling_view_behavior"

View File

@ -29,7 +29,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/listsRecycler"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
<app.pachli.view.BackgroundMessageView
android:id="@+id/messageView"

View File

@ -36,7 +36,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/scheduledTootList"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
<app.pachli.view.BackgroundMessageView
android:id="@+id/errorMessageView"

View File

@ -16,7 +16,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
<app.pachli.view.BackgroundMessageView
android:id="@+id/messageView"

View File

@ -24,6 +24,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="8dp"
android:scrollbars="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"

View File

@ -13,7 +13,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
<app.pachli.view.BackgroundMessageView
android:id="@+id/messageView"

View File

@ -27,6 +27,7 @@
android:id="@+id/listsView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
android:visibility="gone"
tools:visibility="visible" />

View File

@ -16,9 +16,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
<ProgressBar

View File

@ -15,8 +15,8 @@
android:layout_height="match_parent"
android:layout_gravity="center"
android:background="?android:attr/windowBackground"
android:scrollbars="vertical"
tools:listitem="@layout/item_account" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
<ProgressBar
@ -45,4 +45,3 @@
android:visibility="gone" />
</FrameLayout>

View File

@ -16,7 +16,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
<app.pachli.view.BackgroundMessageView
android:id="@+id/statusView"

View File

@ -35,7 +35,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
<app.pachli.view.BackgroundMessageView
android:id="@+id/statusView"

View File

@ -33,7 +33,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
<app.pachli.view.BackgroundMessageView
android:id="@+id/messageView"

View File

@ -33,7 +33,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
android:scrollbars="vertical" />
<app.pachli.view.BackgroundMessageView
android:id="@+id/messageView"

View File

@ -208,6 +208,7 @@
android:layout_marginTop="4dp"
android:layout_marginBottom="4dp"
android:nestedScrollingEnabled="false"
android:scrollbars="vertical"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@id/status_display_name"
app:layout_constraintTop_toBottomOf="@id/status_media_preview_container" />