-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to wrap FastScrollRecyclerView in a SwipeRefreshLayout #30
Comments
Actually, I guess there's no reason to not just put a |
Also, |
@randr0id Good point! Additionally, putting the <android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeLayout"
android:layout_height="match_parent"
android:layout_width="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_height="match_parent"
android:layout_width="match_parent" />
</android.support.v4.widget.SwipeRefreshLayout>
<com.l4digital.fastscroll.FastScroller
android:id="@+id/fastScroller"
android:layout_gravity="end"
android:layout_height="match_parent"
android:layout_marginBottom="16dp"
android:layout_marginTop="16dp"
android:layout_width="wrap_content" /> I then wired up the scroller manually as detailed in #4. |
In
FastScroller.java
, where it's checking the parent layout,SwipeRefreshLayout
ought to be allowed so we can do pull to refresh.The text was updated successfully, but these errors were encountered: