Created
July 12, 2016 12:45
-
-
Save ChanSek/343c86bb244d5584294a23931c1ae422 to your computer and use it in GitHub Desktop.
Multiple ViewHolder classes for supporting multiple view types
This file contains 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
class ViewHolder1 extends RecyclerView.ViewHolder { | |
... | |
} | |
class ViewHolder2 extends RecyclerView.ViewHolder { | |
... | |
} | |
class ViewHolder3 extends RecyclerView.ViewHolder { | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment