Last active
April 13, 2021 02:48
-
-
Save MtaufiqH/94b9fe3954c3c873f50d08e20439d94e to your computer and use it in GitHub Desktop.
Abstraction viewholder to make an dinamis holder data in recyclerview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.view.View | |
| import androidx.recyclerview.widget.RecyclerView | |
| abstract class BaseViewHolder<T>(itemView: View) : RecyclerView.ViewHolder(itemView) { | |
| abstract fun bind(item: T) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment