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
The library hides the implementation details of the RecyclerView.Adapter usage, making it impossible to assign the RecyclerView.Adapter.StateRestorationPolicy to the adapter. This means we can't resolve state restoration issues the policy is intended to address.
Part of the problem is the adapter is assigned "just-in-time" in com.squareup.cycler.Recycler.update, and there doesn't appear to be any way to hook into this mechanism to modify the adapter prior to assignment.
Is there anything that can be done about this? Can this hack be removed, now that StateRestorationPolicy is available?
The text was updated successfully, but these errors were encountered:
The library hides the implementation details of the
RecyclerView.Adapter
usage, making it impossible to assign theRecyclerView.Adapter.StateRestorationPolicy
to the adapter. This means we can't resolve state restoration issues the policy is intended to address.Part of the problem is the adapter is assigned "just-in-time" in
com.squareup.cycler.Recycler.update
, and there doesn't appear to be any way to hook into this mechanism to modify the adapter prior to assignment.Is there anything that can be done about this? Can this hack be removed, now that
StateRestorationPolicy
is available?The text was updated successfully, but these errors were encountered: