Skip to content

Instantly share code, notes, and snippets.

View jessevanmuijden's full-sized avatar

Jesse van Muijden jessevanmuijden

View GitHub Profile
@mandhor
mandhor / swipeRefreshLayoutRecyclerView.java
Created April 8, 2015 21:53
SwipeRefreshLayout RecyclerView bug workaround (SwipeRefreshLayout catches scroll up too early - not on top of the list - making it impossible to scroll up recyclerview)
//we have to keep current scroll value somewhere in our fragment
private int overallYScroll = 0;
recyclerView.setOnScrollListener(new RecyclerView.OnScrollListener() {
@Override
public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
super.onScrolled(recyclerView, dx, dy);
overallYScroll = overallYScroll + dy;