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. I think the line should be: ``` java performItemClick(view, motionPosition + mFirstPosition, adapter.getItemId(motionPosition + mFirstPosition)); ```