Paul Turner
Paul Turner
@zajnbovv any chance you have sample code that recreates the problem?
Sorry I missed the reply to this in January, would love a sample to recreate the problem. The sample can be given through Github using a public repository. Reopening for...
@alcntml Do you have a sample to recreate the problem I can look at?
@noman404 Sorry for the late reply. If you are adding the parent and child at the same time, you can simply call `notifyParentInserted(0)` and that will add both the parent...
Hello @jianyaoang, Right now there is not support for nested children, I think there had been some effort down that line but ended up making the adapter a little bit...
@KScoder83 Could you expand on the question a little bit more? If you have the viewholder, you should be able to cast it to a parent viewholder or child viewholder...
@guulshark Sorry for the late reply. This seems like a good idea to call `notifyItemChanged` when we don't find a view, I'll have a PR for this soon hopefully.
Very cool idea @jubby2000, it would be possible but not currently implemented in this library. It would be a mix of something like https://github.com/bgogetap/StickyHeaders and this library. Currently we are...
I've already tried to document this in both methods of `getParentViewType` [here](https://github.com/bignerdranch/expandable-recycler-view/blob/master/expandablerecyclerview/src/main/java/com/bignerdranch/expandablerecyclerview/ExpandableRecyclerAdapter.java#L274) and `getChildViewType` [here](https://github.com/bignerdranch/expandable-recycler-view/blob/master/expandablerecyclerview/src/main/java/com/bignerdranch/expandablerecyclerview/ExpandableRecyclerAdapter.java#L295) which I assumed would be read before overriding. Is there a better place to put...
@CChenGfi This is possible, but it goes against some of the optimizations of recyclerview. What you will want to do is override `getChildViewType` and return a unique integer for each...