Created
January 15, 2020 15:19
-
-
Save DjakaTechnology/b09f5e8d8d93866709b33bc5183468f9 to your computer and use it in GitHub Desktop.
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
| interface AdapterDelegate <T> { | |
| fun isForViewType(items: List<T>, position: Int): Boolean | |
| fun onCreateViewHolder(parent: ViewGroup): RecyclerView.ViewHolder | |
| fun onBindViewHolder(items: List<T>, position: Int, holder: RecyclerView.ViewHolder) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment