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
1
vote
2 answers

How to change color in ExpandableRecyclerView

I am using this library but I can't get to a way to change the group background color from white. EDIT: the xml files as requested in comments: content_main.xml the content_main file which include the expandable recyclerview
1
vote
0 answers

Android, create a sectioned expandable recyclerView

Is there a way to create an expandable RecyclerView with sections? I can create an expandable RecyclerView using this expandable recycler view and of course I can create a sectioned RecyclerView separately ... But, I don't know how to have both in…
a fair player
  • 11,530
  • 9
  • 46
  • 48
1
vote
1 answer

expandable recyclerview update from firebase

I'm using a expandable recyclerview in my project, the data is provided from a firebase consulting. The expandable recyclerView that I use is: bignerdranch What is the best way for update my view, because the site says: Please note that the…
1
vote
1 answer

How to get such an expandable layout?

Does anyone know how to get an expandable layout like the payment method and the in the link? I don't want it to be in a listview because I need such an expandable layout works for other things with different content. Or it could be in an expandable…
Yanru Bi
  • 521
  • 1
  • 5
  • 13
1
vote
1 answer

Androidannotations EBean annotated class should have a constructor with one parameter of Context type

I use this expandable recycler view library and Androidannotations. And try to use @NonConfigurationInstance annotation. In ItemViewHolder class constructor I need View type argument, but @EBean annotation does not allow to use any parametr in…
1
vote
2 answers

Android recycler view row item duplicates on scroll while view expanding relative layout

Recycler view contains two textfields in each row. When we click on one textview it expands an expandable layout.This expandable layout duplicates on scrolling. Here is my adaptor class public class AlbumsAdapter extends…
Bivin
  • 375
  • 3
  • 24
1
vote
1 answer

How to add 2 child in ExpandableRecyclerView

I have created list using ExpandableRecyclerView, but I want to add 2nd child in this list at position 4. How can I add the different child in the same list? private Activity activity; public RecyclerAdapterDemo(Activity activity, List
Rahul
  • 73
  • 10
1
vote
1 answer

Expandable Recyclerview custom child implement issue

I am working on tennis app and i wanna to show live score tournament wise(Expandable Recyclerview) here i added a screen shot here I am using this lib for expandable recyclerview HERE i don't know how to add custom child and parent data in…
Arpit Patel
  • 7,212
  • 5
  • 56
  • 67
1
vote
1 answer

Filling the Child items when expanding the parent of recycler view

In my project I have to use the Expandable feature in listview or a recyclerview. I selected the recyclerview as It is better in performance. But I have to make the Expandable version So I got very nice library over here and it really works good.…
A.s.ALI
  • 1,992
  • 3
  • 22
  • 54
0
votes
0 answers

Expandable recycler view

Is there any way to make Amazon mobile application like "Menu" with nested expandable RecyclerView using java. I have been trying to replicate it but I don't know how to start designing the layout for it. Anyone have any idea that how can I achive…
0
votes
0 answers

Exapandable GridLayout RecyclerView

As shown in image I want to make similar expandable GridLayout RecyclerView. Initially, there will be a RecyclerView, which will contains Grid Laytout structure with span count=2. When I click any Item of the grid, it will exapand a layout below…
0
votes
0 answers

Recyclerview not showing items on main activity

I was tring to make an attendence app in andoid studio using java.but my Recycle view is not showing any itmes that i add to my database.The mainactiviy is empty MainActivity.java package com.vusamiul.finalattendence; import…
0
votes
1 answer

RecyclerView not showing Data in Fragment

Someone please help!! I have searched so many questions and anwsers, moved the adapter around the onCreateView and onCreate, nothing works!! I believe the issue is in my Gallery Fragment: GalleryFragment.java. public class GalleryFragment extends…
0
votes
0 answers

Can not select lower index in child adapter after compressing higher index

I have a Parent and a child Adapter... when lower index of parent adapter is expanded at begining, it works fine.. And if i click on lower index and then click on the higher index... lower index gets compressed and all the index of child adapter…
Bijay
  • 1
  • 1
0
votes
2 answers

expand all items in a expandable recyclerview using single button press

this is the code for expanding/collapsing an item. how can I Expand all items in a recycler view with a single button click? private fun expandParentRow(position: Int){ \\to expand an item val currentBoardingRow = list[position] …
shah
  • 17
  • 7