Paul Turner

Results 42 comments of Paul Turner

Sorry for taking so long to respond. I think what is happening with the call to `notifyDataSetChanged` is that you are kind of getting into a recursive loop. User checks...

@kshitij-sminq Could you give context as to what you were doing? what was the data before and after? sample code to reproduce?

Thanks for the report. I'll take a look at what it might take to protect from a null child list. Right now @hyb1996 is correct that we expect an empty...

@malnvenshorn Best answer I can give is flexibility, `List` allows each developer to make that choice. Not every model will have implementations of `compare()` or want every list to be...

@malnvenshorn Thanks for the feedback! If you run into difficulties later on with the library not allowing you to make those changes feel free to bring them up in an...

Hi @emily83, unfortunately that is not possible right now. But we should definitely be able to add a method that only triggers the parent. Shouldn't take long since we have...

Hi @iRYO400 From my understanding this library will need no proguard rules since it has no code generation or reflection in it. Should be good to go as is. Are...

This should be possible with what we have now, might make an example to add to our sample.

@nguyenhoanglam are there existing implementations for this with a normal recycler view? This might be something better suited for the layout manager than a custom adapter.

Interesting. It sounds like all that is missing is a call to `notifyParentDataSetChanged` which will refresh according to what you have in your model objects to the full list. Hard...