expandable-recycler-view icon indicating copy to clipboard operation
expandable-recycler-view copied to clipboard

[DEPRECATED]

Results 69 expandable-recycler-view issues
Sort by recently updated
recently updated
newest added

Please help me to implement endless loadmore to Expandable Recycler. Thanksss

I came upon kind of a weird issue. I have a recyclerview with the parents always extended. I implemented onQuerryTextChanged in my fragment in order to search through the children....

need-info

Hi I want to process BACK key so if there is at least one expanded node then collapse all, otherwise close the activity. How can I? Thanks

`@Override protected void onSaveInstanceState(Bundle outState) { if(outState!= null) { super.onSaveInstanceState(outState); listAdapter.onSaveInstanceState(outState); } @Override protected void onRestoreInstanceState(@NonNull Bundle savedInstanceState) { if(savedInstanceState != null) { super.onRestoreInstanceState(savedInstanceState); listAdapter.onRestoreInstanceState(savedInstanceState); } }` My App got...

In my case Expandable having Grid Recycle review not LinearREcyclerview. So what to do ?.

Hi, is there a way to create all child items for all groups right away? so they wont be recycled. For instance when I need to change state of child...

I'm passing data to the adapter through List. First Child View shows correct info. But, when I scroll down and expand more Parent item's then first or any other child...

> isExpanded() called just for the first time the activity show up. but after that it didn't work anymore. btw, i use you library in View Pager Fragment > here...

First of all your library is too much useful. In my case UI rendering is taking too much time, I have all complicated parents and child layouts. and also when...

need-info