GenericRenderers
GenericRenderers copied to clipboard
GenericRenderers is an Android library created to avoid all the boilerplate needed to use a RecyclerView with adapters.
Currently the adapter's function `move(from, to, item)` doesn't call `notifyItemChanged` although it sets a possibly new item in the list, potentially causing a duplicate of the previous item instead of...
### Problem When only 1 renderer is bound via `RendererBuilder.BindedExtendedRendererBuilder`, it's used for rendering any `RendererContent` added into the `RendererAdapter`. This can cause different `RendererContent` to be rendered with the...
While using the renderers, I often find myself needing to access the adapter for an action on the renderer. Is there a good method for either getting it, or passing...
Right now the `RendererBuilder` binding is done by passing an instance of a Renderer which will later on be cloned in order to be reused. This causes that any state...
The problem with SerializableRendererContent is that it extends non serializable object RendererContent so it will serialize only SerializableRendererContent itself without T item, int type. Moreover useing this class right now...