Questions tagged [expandablerecyclerview]

an Android library to allow for an expanded view to be attached to each ViewHolder.

Expandable RecyclerView is a library written to allow for an expanded view to be attached to each ViewHolder. To allow for full functionality of a normal RecyclerView, the RecyclerView has been modified to use two types of ViewHolders, a child and a parent with the ability to customize each separately.

This library has been deprecated.

98 questions
0
votes
0 answers

How to make expandable listview children scrollable?

I've an expandable listview. I want to put different data in child views and make them scrollable. Currently my expandable listview is scrolling rather than child scroll. How can I restrict that and meet the requirement? gridcustom layout: ?xml…
0
votes
2 answers

Expandable Recycler View only showing one item in parent

My recycler view has a parent and a child. My parent is only displaying one item with then all the topics in that one item. I can post my code below I'm not sure what it is I need to do to correct this as this is my first time using expandable…
BilalMH
  • 175
  • 1
  • 21
0
votes
0 answers

ExpandableRecyclerAdpater how to make it scroll to the top

I use ExpandablerecyclerAdapater. Just want the screen to move up from align with parentItem clicked. I altered the code to force collapse all items before I expand new one. @Override public void onParentListItemExpanded(int position) { …
saintPeter
  • 203
  • 4
  • 14
0
votes
3 answers

how to collapse all childviews on expandable recycler view

i have my expandable recyclerview set with two layouts HEADER and CHILD. Everything is working fine. here is my screen shot. i have used different layouts for header and child. when the users click one header, i want my program to check if any…
Suresh Basnet
  • 147
  • 2
  • 13
0
votes
1 answer

How to make expandable recycler view like imgur comment section

I want to make expandable recycler view with dynamic no of item. I need same recycler view as imagur comment section for each image. How to add that dynamic no of childern view in row of recyclerview. Thank you
user3606902
  • 829
  • 1
  • 10
  • 25
-1
votes
1 answer

How to add an expandableView in a RecyclerView?

How to add an expandableView in a RecyclerView? I have a problem in implementing an expandable view in the following code. In the picture, I have fetched data from a json. How to implement the expand and collapse in a RecyclerView? I have been stuck…
-1
votes
1 answer

More info inside expandable recycler view

i hope that you could help me. i want to use a expandablerecyclerview but i dont need to expand a list of other elements like the lib says library example I just need that the item expand and show more info of the item inside the recycler
-2
votes
1 answer

Design an expandable list with recycler view and supporting grid layout for child views in android

I am trying to design a recycler view with expandable design , it will have groups which on click would open and show child views. But the child views need to support linear layout and grid layout as well. Currently I am using a recycler view…
1 2 3 4 5 6
7