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
0 answers

Problem with implement scratch-card in recyclerview?

I have problem with add to scratchcard in RecyclerView because of when i scratch the cards vertically, it was not scratch but it was scroll up down how to solve it ? Please help me to solve this issue... this is my RecyclerView …
0
votes
0 answers

How can I populate the data according to its own categories

I am using retrofit to populate my checklist activity according to its equipment. The data is in json file. I did try this method to populate the data but whenever there is similar category, it will populate twice. For example {Equipment1,…
0
votes
1 answer

How to work with nested recyclerviews in xamarin?

Well, I know how to implement nested recyclerview in android studio, but i'm in a new work and we're using xamarin.. I have problems to implement the parent adapter. Any advice? I tried to make 2 difs recyclerview, some google searchs and…
Krum
  • 154
  • 1
  • 2
  • 16
0
votes
0 answers

Disappear items if the list has one item in the nested RecyclerView

Greating follow Coders, I would like to ask you, because I am stucked. Currently I working on a following page, what is similar to Instagram's follow process. In my case the app will fitch first the followed people, how you follow. If it is done,…
0
votes
4 answers

How Make Recyclerview With Child Recyclerview in android

I want to make something like Spotify home view with Retrofit but I cannot understand how to do it. please help him I am very confused. please help him these are my XML code look like these. First Is the Main Layout Recyclerview, Second Layout Is…
axar
  • 539
  • 2
  • 17
0
votes
1 answer

Child RecyclerView doesn't scroll internally

I'm kinda new to Android App Development. Well, I'm playing around with RecyclerView. I have a parent recyclerview with a modal layout. Now the modal layout has a recyclerview (child recyclerview). I have managed to create adapters and scroll the…
0
votes
2 answers

Android how to interact with nested recyclerView from fragment

How does one properly send data to child adapter in a fragment? I'm basically trying to implement an Instagram like comments-section, e.g. a bunch of comments that can each have more comments (replies). To do that, I use one main recyclerView + main…
mrj
  • 589
  • 1
  • 7
  • 17
0
votes
1 answer

Nested recycler view's unable to show two independent lists

I have a vertical chat recycler-view i am trying to show multiple horizontal recycler-view's in which contain a "carousel" of card views. I am able to inflate the horizontal views but when i try to add two of the same kind of horizontal view as…
0
votes
1 answer

Nested RecyclerView with Horizontal Scroll

I'm trying to implement nested RecyclerViews with 3 layers. The 1st RecyclerView (parent) view is set to scroll vertically. The 2nd RecyclerView (child of the 1st) view is set to scroll horizontally. The 3rd RecyclerView (child of the 2nd) view is…
0
votes
1 answer

Nested Horizontal RecyclerView

I wanna create a nested RecyclerView were the Parent RV is horizontal layout manager with > 3 items and the child is horzinotl too, but I can't scroll the child it's only indicate the parent gesture. Parent LayoutManager LinearLayoutManager…
0
votes
2 answers

scroll recyclerview item to top inside of scroll view

I'm trying to scroll recycler view item to top of screen when user clicks on an item. My layout is set as following - -- --- // static content --- // dynamic content --- …
0
votes
1 answer

Unable to initialize a RecyclerView: null object reference

When setting my RecyclerView's layoutManager and adpater, I am getting this error: java.lang.NullPointerException: Attempt to invoke virtual method 'void…
0
votes
1 answer

Vertical RecyclerView inside Vertical RecyclerView

I have a recyclerview which has orders. On clicking order, i need to display the products below the order. So i have used nested recyclerview (vertical-vertical). Sample UI : link The first order item in recyclerview onclicking show lists the…
0
votes
0 answers

Vertical Recyclerview inside horizontal Recyclerview using old views and populating nested recyclerview

I am developing an app in which we need vertical Recyclerview inside horizontal Recyclerview. And the vertical Recyclerview have multiple view types. So the problem is, when i scroll down few items and go back up again, only the nested recyclerview…
0
votes
4 answers

nested recyclerview inside adapter

I am developing an android app where I have used nested RecyclerView but I am not achieving what I want.I want to achieve on this list it should show Title and below multiple images like json below how can I achieve that I am using two viewholder…