I don't really know if this is the same problem as #28 or just related.
However, when having the RecyclerView inside a SwipeRefreshLayout the FastScroller it doesn't work as intended. Its scrollbar jumps when the RecyclerView is moved normally and cannot be dragged.
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/refresh_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="LinearLayoutManager">
<com.futuremind.recyclerviewfastscroll.FastScroller
android:id="@+id/fastscroll"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentEnd="true"
android:orientation="vertical" />
</RelativeLayout>
</android.support.v4.widget.SwipeRefreshLayout>
I don't really know if this is the same problem as #28 or just related.
However, when having the
RecyclerViewinside aSwipeRefreshLayouttheFastScrollerit doesn't work as intended. Its scrollbar jumps when theRecyclerViewis moved normally and cannot be dragged.