Skip to content

v1.1.2

Compare
Choose a tag to compare
@mikepenz mikepenz released this 24 Feb 19:28
· 1541 commits to develop since this release

library

  • handle the toggling of expandable items within the FastAdapter
    • update sample to follow this

sample

  • alter the ExpandableItem to fit the Material Design Guideliens for expandable items

MIGRATION

  • remove fastItemAdapter.toggleExpandable(position); from your onClick listener
  • change if (((IExpandable) item).isExpanded()) to if (!((IExpandable) item).isExpanded()) in the onClick listener as the expantion is now done before the listener is called