Created
October 20, 2018 08:08
-
-
Save worker8/bf1ed1c760320199cee46d283f11d709 to your computer and use it in GitHub Desktop.
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
interface AccordianAdapter { | |
fun onCreateViewHolderForTitle(parent: ViewGroup): AccordionView.ViewHolder | |
fun onCreateViewHolderForContent(parent: ViewGroup): AccordionView.ViewHolder | |
fun onBindViewForTitle(viewHolder: AccordionView.ViewHolder, position: Int, arrowDirection: ArrowDirection) | |
fun onBindViewForContent(viewHolder: AccordionView.ViewHolder, position: Int) | |
fun getItemCount(): Int | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment