Skip to content

Instantly share code, notes, and snippets.

@hongbeomi
Created September 10, 2022 08:28
Show Gist options
  • Save hongbeomi/7c4c22ed8f097d6c0c5526f0f17356e2 to your computer and use it in GitHub Desktop.
Save hongbeomi/7c4c22ed8f097d6c0c5526f0f17356e2 to your computer and use it in GitHub Desktop.
class NestedAdapterWrapper {
@NonNull
private final StableIdStorage.StableIdLookup mStableIdLookup;
public long getItemId(int localPosition) {
long localItemId = adapter.getItemId(localPosition);
return mStableIdLookup.localToGlobal(localItemId);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment