I've implement an OnScrollListener
that hide some other Views
when my recyclerView
is scrolled down.
Now I just want a way to show again these Views
when the user reach the top of the RecyclerView
and pull it.
I do not want to use the SwipeRefreshLayout
, I don't have anything to refresh and I don't want the bounce effect.
I just need a callback when the user pull at the top set my views visibility to View.VISIBLE
. Also I need it to work even if my recyclerView does not contain enough data to fill the screen.
Didn't find anything on the web that allowed me to do that whitout implementing x useless function, or worked whitout a full recyclerView