Top "Android-recyclerview" questions

The RecyclerView widget is a more advanced and flexible version of ListView and GridView.

Get clicked item and its position in RecyclerView

I am replacing my ListView with RecyclerView, list showing ok, but I would like to know how to get clicked …

android listview android-recyclerview
Android Recyclerview GridLayoutManager column spacing

How do you set the column spacing with a RecyclerView using a GridLayoutManager? Setting the margin/padding inside my layout …

android gridview android-recyclerview gridlayoutmanager
How to implement endless list with RecyclerView?

I would like to change ListView to RecyclerView. I want to use the onScroll of the OnScrollListener in RecyclerView to …

android listview android-recyclerview material-design onscrolllistener
Simple Android RecyclerView example

I've made a list of items a few times using Android's RecyclerView, but it is a rather complicated process. Going …

android android-recyclerview
How to filter a RecyclerView with a SearchView

I am trying to implement the SearchView from the support library. I want the user to be to use the …

android android-recyclerview searchview android-filterable
Scroll RecyclerView to show selected item on top

I'm looking for a way to scroll a RecyclerView to show the selected item on top. In a ListView I …

android scroll android-recyclerview
Is there an addHeaderView equivalent for RecyclerView?

I'm looking for an equivalent to addHeaderView for a recycler view. Basically I want to have an image with 2 buttons …

android android-view android-recyclerview
How to import RecyclerView for Android L-preview

Trying to use the new RecyclerView from the support library. I downloaded the 20 update for the support library using the …

android gradle android-5.0-lollipop android-recyclerview
Get visible items in RecyclerView

I need to know which elements are currently displayed in my RecyclerView. There is no equivalent to the OnScrollListener.onScroll(...) …

android android-recyclerview
How to disable RecyclerView scrolling?

I cannot disable scrolling in the RecyclerView. I tried calling rv.setEnabled(false) but I can still scroll. How can …

android scroll android-recyclerview