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
TypedViewHolder.inflate forwards to LayoutInflater.inflate for the heavy lifting. Unfortunately the wrapper does not respect the quirky return value behavior of that method:
The root View of the inflated hierarchy. If root was supplied and attachToRoot is true, this is root; otherwise it is the root of the inflated XML file.
If the root View and the inflated layout have different View types, the cast in TypedViewHolder.inflate is illegal:
TypedViewHolder.inflate
forwards toLayoutInflater.inflate
for the heavy lifting. Unfortunately the wrapper does not respect the quirky return value behavior of that method:If the root
View
and the inflated layout have differentView
types, the cast inTypedViewHolder.inflate
is illegal:The text was updated successfully, but these errors were encountered: