Android Advancedrecyclerview Versions Save

RecyclerView extension library which provides advanced features. (ex. Google's Inbox app like swiping, Play Music app like drag and drop sorting)

1.0.0

5 years ago

[Breaking changes]

  • Migrated to AndroidX
  • Removed some deprecated features
    • BaseWrapperAdapter
    • SwipeableItemConstants.REACTION_CAN_SWIPE_BOTH
    • SwipeableItemConstants.REACTION_CAN_NOT_SWIPE_BOTH
    • SwipeableItemConstants.REACTION_CAN_NOT_SWIPE_BOTH_WITH_RUBBER_BAND_EFFECT
  • New DraggableItemState getDragState() method added to the DraggableItemViewHolder interface
  • New SwipeableItemState getSwipeState() method added to the SwipeableItemViewHolder interface
  • New ExpandableItemState getExpandState() method added to the ExpandableItemViewHolder interface

[New features & improvements]

  • Introduced DraggableItemState, no more DraggableItemConstants.STATE_FLAG_** bit operations required anymore in user code
  • Introduced SwipeableItemState, no more SwipeableItemConstants.STATE_FLAG_** bit operations required anymore in user code
  • Introduced ExpandableItemState, no more ExpandableItemConstants.STATE_FLAG_** bit operations required anymore in user code
  • Annotated many public method with @NonNull or @Nullable

:point_right: Migration guide from v0.11.0 to v1.0.0