Skip to content

Instantly share code, notes, and snippets.

@worker8
Created October 20, 2018 08:08
Show Gist options
  • Save worker8/bf1ed1c760320199cee46d283f11d709 to your computer and use it in GitHub Desktop.
Save worker8/bf1ed1c760320199cee46d283f11d709 to your computer and use it in GitHub Desktop.
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