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
Method B is the classic way to implement the Adapter by overriding onCreateViewHolder() & onBindViewHolder(). Those methods will be now declared final because Method A will be the new standard.
From now on, we will use only Method A: we will delegate the previous operations to the item interfaces.
Item interfaces will now mandatory implement the following methods:
getLayoutRes()
createViewHolder()
bindViewHolder()
The text was updated successfully, but these errors were encountered:
Method B is the classic way to implement the Adapter by overriding
onCreateViewHolder()
&onBindViewHolder()
. Those methods will be now declared final because Method A will be the new standard.From now on, we will use only Method A: we will delegate the previous operations to the item interfaces.
Item interfaces will now mandatory implement the following methods:
getLayoutRes()
createViewHolder()
bindViewHolder()
The text was updated successfully, but these errors were encountered: