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
- FIX #67
general