Questions tagged [nestedrecyclerview]

android: horizontal linear recycler view nested within a vertical recycler view

android: horizontal linear recycler view nested within a vertical recycler view

198 questions
0
votes
1 answer

In 3 level Nested Expand/ Collapse Vertical(all) Recyclerview data is not updated in inner Recyclerviews after 1st or subsequent time Qrcode scan data

After first qr code scan i make API call and get data. its work fine. But later when i scan other QRcode the data is retrieved but its not shown in inner recyclerview, mean no expand and collapse function works. after instantiating recyclerview,…
0
votes
1 answer

add recycle view item to another screen from a recycle view- kivy

I have two screens. MainScreen and Playlist. MainScreen has a RecycleView method added that displays list of items. These items are created from folder names(directories). I want the files inside each folder(directories) to open on the Playlist…
Wil Steve
  • 17
  • 5
0
votes
0 answers

onBindViewHolder is getting call for all items for Nested Horizontal recyclerviews

I am working on a custom view in which items can be expanded and collapsed on action tap. So i have taken a horizontal recyclerview having another horizontal recyclerview in its item. But i am facing a problem with this implementation Outer adapter…
0
votes
3 answers

How can i merge two recycler views such that they scroll one after another?

I tried to implement this answer and it worked but only if the both list are prepopulated already, but in my case one list is prepopulated and the other is incremented/decremented dynamically. Here is my layout structure Black box represents the…
0
votes
2 answers

Update Parent Adapter in Nested Adapters?

I have nested adapters for two RecyclerViews kind of like so: Parent Adapter: public class ParentAdapter extends RecyclerView.Adapter { public static ArrayList parentItemList; private…
0
votes
0 answers

Android : RecyclerView.OnScrollListener - onScrollStateChanged (RecyclerView inside RecyclerView)

I am facing the issue with RecyclerView Scroll Listener. On my screen, I have one RecyclerView with 3 items (2 horizontally scrollable and 1 vertically scrollable). Inside its adapter I am using another RecyclerView to display items in Horizontal…
0
votes
0 answers

Why recycle view inside horizontal scroll view not working?

I have created calendar by using recycle view. It worked perfectly in emulator but in real device only few elements gets loaded. I used horizontal scrollview so all elements load at once and I'm adding padding at both sides for animations. Code…
RHS.Dev
  • 412
  • 6
  • 18
0
votes
1 answer

How To Highlight Selected Child Item In A Nested RecyclerView

I have a Child recyclerView nested in a parent recyclerView giving me the concept of topics in different Chapters as seen in the attached photo below. MY CHALLENGE is highlighting a single selected child item (Topic) in any given section or…
Eric
  • 37
  • 1
  • 7
0
votes
2 answers

Query Firestore For Items To Be Displayed using RecyclerView in Recyclerview

I have a list of math topics as documents in firebaseFirestore. The objects of these topics (documents) have a field called, rootTopic that can be used to categorize them into groups. I would like to query the collection of these topics (documents)…
Eric
  • 37
  • 1
  • 7
0
votes
0 answers

Android Nested Recylcerview with different items counts

I have a nested recyclerview, and I just want it to display different item numbers for each item of the parent recyclerview. It's supposed that each item implements number of view according to each model object list that's been passed to adapter It…
0
votes
3 answers
0
votes
1 answer

I want to get Count the clicks on an item of RecyclerView

I have a recyclerview,this recycler have 5 item[a,b,c,d,e].Suppose 10 user clicked this item[b].how can i get count = 10 and i want to store this count data in firebase database.(I am not using firebase recyclerview) My another question is i have 5…
0
votes
0 answers

Android Recycler View Adapter OnClickListener inside another Adapter

I have the following Adapter : public class TeambuilderAdapter extends RecyclerView.Adapter implements ItemTouchHelperAdapter { private List mData; private LayoutInflater mInflater; private…
0
votes
1 answer

How to update inner adapter item in android nested recycler view

I would like to update panel wise items in inner adapter item android recyclerview. When we pass the data dynamically.Data displaying is working fine. When we go to update the inner adapter item, it's not getting updated. But last item was getting…
amar544
  • 43
  • 9