We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/etsy/AndroidStaggeredGrid/blob/master/library/src/main/java/com/etsy/android/grid/ExtendableListView.java#L2744
The position argument to performItemClick is offset by mFirstPosition, but the argument passed to adapter.getItemId() is not offset.
position
performItemClick
mFirstPosition
adapter.getItemId()
I think the line should be:
performItemClick(view, motionPosition + mFirstPosition, adapter.getItemId(motionPosition + mFirstPosition));
The text was updated successfully, but these errors were encountered:
Care to send a pull request? Would love to give you credit for your fix.
Sorry, something went wrong.
I suppose I should learn how to do that...
Fixed by #86. Thanks again!
No branches or pull requests
https://github.com/etsy/AndroidStaggeredGrid/blob/master/library/src/main/java/com/etsy/android/grid/ExtendableListView.java#L2744
The
position
argument toperformItemClick
is offset bymFirstPosition
, but the argument passed toadapter.getItemId()
is not offset.I think the line should be:
The text was updated successfully, but these errors were encountered: