Top "Android-recyclerview" questions

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

RecyclerView and SwipeRefreshLayout

I'm using the new RecyclerView-Layout in a SwipeRefreshLayout and experienced a strange behaviour. When scrolling the list back to the …

android swiperefreshlayout android-recyclerview
Understanding RecyclerView setHasFixedSize

I'm having some trouble understanding setHasFixedSize(). I know that it is used for optimization when the size of RecyclerView doesn't …

android android-5.0-lollipop android-recyclerview
Swipe to Dismiss for RecyclerView

I used to SwipeToDismiss library but now I'm trying to migrate to RecyclerView and things are not so obvious, do …

android android-recyclerview
How to create context menu for RecyclerView

How do I implement context menu for RecyclerView? Apparently calling registerForContextMenu(recyclerView) doesn't work. I'm calling it from a fragment. …

android contextmenu android-recyclerview
How to implement multi-select in RecyclerView?

ListView had a multiple choice mode, what should I use for implementing the same using RecyclerView? How to handle onItemCheckedStateChanged? …

android android-recyclerview multi-select
Detect when RecyclerView reaches the bottom most position while scrolling

I have this code for a RecyclerView. recyclerView = (RecyclerView)rootview.findViewById(R.id.fabric_recyclerView); recyclerView.setLayoutManager(layoutManager); recyclerView.addItemDecoration(…

android scroll android-recyclerview
Should we use RecyclerView to replace ListView?

Android Docs say: The RecyclerView widget is a more advanced and flexible version of ListView. This widget is a container …

android listview android-recyclerview
RecyclerView header and footer

Maybe this question has been asked before, but I could not seem to find a precise answer or solution. I …

android header footer android-5.0-lollipop android-recyclerview
Recyclerview Changing Items During Scroll

I have a RecyclerView. Each row has a play button, textview and Progressbar. when click on the play button have …

android android-scrollview android-recyclerview