You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for this interesting project. I am using it along with Jedux as state container. I found an issue trying to use a RecyclerAdapter and RendereableAdapter also; whenever I tried to update individual row states (each item) the whole listview gets updated as well making the scroll go all to the beginning.
Thanks in advance :)
The text was updated successfully, but these errors were encountered:
Hi, do you cache your adapter instance or do you reuse the same one (e.g. inline it like adapter(new RenderableAdapter() { ...})? In the latter case the list will be fully refreshed and the scroll position will be reset. In the first case though the list may seem to not be updated at all, so you will have to call notifyDataSetChanged() from inside your parent view() method
I cached the adapter on the parent view, and it works for RenderableAdapter() but it keeps updating the whole view for RenderableRecyclerViewAdapter, T_T
Hi,
Thank you for this interesting project. I am using it along with Jedux as state container. I found an issue trying to use a RecyclerAdapter and RendereableAdapter also; whenever I tried to update individual row states (each item) the whole listview gets updated as well making the scroll go all to the beginning.
Thanks in advance :)
The text was updated successfully, but these errors were encountered: