Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Attachment actions
Unintended behavior
View staffing
Description
Version used:1.3.0-alpha02
Devices/Android versions reproduced on: Android Studio AVD: Pixel_4a_API_31
```
val firstAdapter = RecyclerView.Adapter()
val secondAdapter = RecyclerView.Adapter()
// I need isolateViewTypes = true
val concatAdater = ConcatAdapter(ConcatAdapter.Config.DEFAULT, firstAdapter, secondAdapter)
```
For example:
when I refresh my adapter and a ViewHolder in firstAdapter was Recycled, I need to know the ViewHolder's ItemViewType in firstAdapter's onViewRecycled method.
But in onViewRecycled, holder.itemViewType return not right itemViewType in firstAdapter. It's return from concatAdater, and I can not get correct holder.bindingAdapterPosition too.
So, how can I get the right ItemViewType?