Top "Android-recyclerview" questions

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

Refreshing data in RecyclerView and keeping its scroll position

How does one refresh the data displayed in RecyclerView (calling notifyDataSetChanged on its adapter) and make sure that the scroll …

android android-recyclerview
How to save RecyclerView's scroll position using RecyclerView.State?

I have a question about Android's RecyclerView.State. I am using a RecyclerView, how could I use and bind it …

android state android-recyclerview
Recyclerview and handling different type of row inflation

I'm trying to work with the new RecyclerView, but I could not find an example of a RecyclerView with different …

android listview android-recyclerview
Failed to resolve: com.android.support:cardview-v7:26.0.0 android

i try to add recyclerview to my project and get this error appear and i added it from android studio …

android android-recyclerview android-gradle-plugin android-support-library
RecyclerView - How to smooth scroll to top of item on a certain position?

On a RecyclerView, I am able to suddenly scroll to the top of a selected item by using: ((LinearLayoutManager) recyclerView.…

android scroll position android-recyclerview smooth
Handle Button click inside a row in RecyclerView

I am using following code for handling row clicks. (source) static class RecyclerTouchListener implements RecyclerView.OnItemTouchListener { private GestureDetector gestureDetector; private …

android android-recyclerview
Remove all items from RecyclerView

I am trying to remove all the elements from my RecyclerView in my onRestart method so the items don't get …

android adapter android-recyclerview
Changing background color of selected item in recyclerview

How to change the background color of only selected view in my recycle view example?only the background color of …

android background android-recyclerview
Best way to update data with a RecyclerView adapter

When I have to use a classic adapter with a ListView, I update my data in the ListView like this: …

android listview android-recyclerview android-adapter
App crashing when trying to use RecyclerView on android 5.0

I'm trying to mess with the new RecyclerView and whenever I try to run it, my app immediately crashes. It …

java android android-layout android-recyclerview android-5.0-lollipop