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
internal class SkeletonRecyclerViewHolder(layout: SkeletonLayout) : RecyclerView.ViewHolder(layout)
Is there any alternative to extend/modify this class?
I've ViewBindingViewHolder class that is failed when using Skeleton due to ClassCastException cannot cast SkeletonRecyclerViewHolder to ViewBindingViewHolder
The text was updated successfully, but these errors were encountered:
The ClassCastException might occur when expecting a custom ViewHolder after calling showSkeleton() due to the whole RecyclerView.Adapter being replaced. Maybe you could provide a sample and explain your goal, so that we can look for a solution together.
internal class SkeletonRecyclerViewHolder(layout: SkeletonLayout) : RecyclerView.ViewHolder(layout)
Is there any alternative to extend/modify this class?
I've
ViewBindingViewHolder
class that is failed when usingSkeleton
due toClassCastException cannot cast SkeletonRecyclerViewHolder to ViewBindingViewHolder
The text was updated successfully, but these errors were encountered: