Recyclerview inside ScrollView not scrolling smoothly
For my app I am using a RecyclerView inside a ScrollView where the RecyclerView has a height based on its content using this … Read more
For my app I am using a RecyclerView inside a ScrollView where the RecyclerView has a height based on its content using this … Read more
My RecyclerView does not call onCreateViewHolder, onBindViewHolder even MenuViewHolder constructor, therefore nothing appears in RecyclerView. I put logs for debugging, and no log … Read more
I have a DialogFragment that contains a RecyclerView (a list of cards). Within this RecyclerView are one or more CardViews that can have … Read more
How to set RecyclerView layoutManager from XML? <android.support.v7.widget.RecyclerView app:layoutManager=”???” android:layout_width=”match_parent” android:layout_height=”match_parent”/> 6 Answers 6
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be … Read more
I’ve made a list of items a few times using Android’s RecyclerView, but it is a rather complicated process. Going through one of … Read more
How to use RecyclerView inside NestedScrollView? RecyclerView content is not visible after setting adapter. UPDATE layout code updated. <android.support.v4.widget.NestedScrollView xmlns:android=”http://schemas.android.com/apk/res/android” android:layout_width=”match_parent” android:layout_height=”match_parent”> <LinearLayout … Read more
I am developing an android application where I am using RecyclerView. I need to add a divider in RecyclerView. I tried to add … Read more
I’m looking for a way to scroll a RecyclerView to show the selected item on top. In a ListView I was able to … Read more
I know that RecyclerView has replaced the functionality of the old ListView and GridView. I am looking for a very basic example that … Read more