interface DrawableManager
Used to specify a custom logic to use different drawables as divider. You can add a custom DrawableManager in your RecyclerViewDivider.Builder using the RecyclerViewDivider.Builder.drawableManager method.
abstract fun itemDrawable(groupCount: Int, groupIndex: Int): Drawable
Defines a custom Drawable for each group of divider. |
abstract class FixedDrawableManager : DrawableManager
Defines a DrawableManager which doesn't depend on the item's position. |