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
When we use GridLayoutManager not either element takes 1 cell. That's why logic if (layoutManager instanceof GridLayoutManager) { offset += ((GridLayoutManager) layoutManager).getSpanCount() - 1; }
is not correct. We need to consider results of spanSizeLookup.getSpanSize
The text was updated successfully, but these errors were encountered:
ILAgent
added a commit
to ILAgent/RecyclerViewSnap
that referenced
this issue
Nov 2, 2018
When we use GridLayoutManager not either element takes 1 cell. That's why logic
if (layoutManager instanceof GridLayoutManager) { offset += ((GridLayoutManager) layoutManager).getSpanCount() - 1; }
is not correct. We need to consider results of
spanSizeLookup.getSpanSize
The text was updated successfully, but these errors were encountered: