Skip to content

v1.2.3

Compare
Choose a tag to compare
@mikepenz mikepenz released this 06 Mar 17:07
· 1472 commits to develop since this release

library

  • fix getGlobalPosition was not returning the real global position when passing position 0
  • improve error message if a ViewHolder without a correct CTOR is used
  • fix wrong generic declaration
  • add final wherever possible
  • simplify notify methods, remove obsolete code as notifyItem* is the same as notifyItemRange*

library-extensions

  • add new AbstractWrapAdapter to the FastAdapter library-extensions
    • This adapter allows to insert items inbetween your list. This is really helpful if you have sections inbetween or want to display ads on a regular basis
    • This adapter requires to call the notify methods directly, it also does not come with the handy methods as an ItemAdapter does (shouldn't be a problem for the usecase of this adapteR)
  • add sample implementation of the new AbstractWrapAdapter

sample

  • rename adapter package to adapters inside sample
  • fix typo in ExpandableItem

general