All Types

com.fondesa.recyclerviewdivider.BuildConfig
com.fondesa.recyclerviewdivider.BuildConfig
com.fondesa.recyclerviewdivider.manager.drawable.DefaultDrawableManager

Default implementation of DrawableManager that will draw the same Drawable for each item.

com.fondesa.recyclerviewdivider.manager.inset.DefaultInsetManager

Default implementation of InsetManager that will use the same inset for each item.

com.fondesa.recyclerviewdivider.manager.size.DefaultSizeManager

Default implementation of SizeManager that will calculate the size of each item using the drawable's dimensions. If the dimensions can't be calculated, a default size will be used.

com.fondesa.recyclerviewdivider.manager.tint.DefaultTintManager

Default implementation of SizeManager that will use the same color to tint each item.

com.fondesa.recyclerviewdivider.manager.visibility.DefaultVisibilityManager

Default implementation of VisibilityManager that will show all dividers.

com.fondesa.recyclerviewdivider.manager.drawable.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.

com.fondesa.recyclerviewdivider.manager.drawable.FixedDrawableManager

Defines a DrawableManager which doesn't depend on the item's position.

com.fondesa.recyclerviewdivider.manager.inset.FixedInsetManager

Defines a InsetManager which doesn't depend on the item's position.

com.fondesa.recyclerviewdivider.manager.size.FixedSizeManager

Defines a SizeManager which doesn't depend on the item's position.

com.fondesa.recyclerviewdivider.manager.tint.FixedTintManager

Defines a TintManager which doesn't depend on the item's position.

com.fondesa.recyclerviewdivider.manager.visibility.FixedVisibilityManager

Defines a VisibilityManager which doesn't depend on the item's position.

com.fondesa.recyclerviewdivider.manager.visibility.HideLastVisibilityManager

Default implementation of VisibilityManager that will show all dividers excluding the one after the last group.

com.fondesa.recyclerviewdivider.manager.inset.InsetManager

Used to specify a custom logic to set different insets to each divider. You can add a custom DrawableManager in your RecyclerViewDivider.Builder using the RecyclerViewDivider.Builder.drawableManager method.

android.view.ViewGroup.MarginLayoutParams (extensions in package com.fondesa.recyclerviewdivider.extension)
com.fondesa.recyclerviewdivider.RecyclerViewDivider

Used to draw a divider between RecyclerView's elements.

com.fondesa.recyclerviewdivider.manager.size.SizeManager

Used to specify a custom logic to set different sizes to the divider. Size is referred to the height of an horizontal divider and to the width of a vertical divider. You can add a custom SizeManager in your RecyclerViewDivider.Builder using the RecyclerViewDivider.Builder.sizeManager method.

com.fondesa.recyclerviewdivider.manager.tint.TintManager

Used to specify a custom logic to use different tint colors to tint divider's drawables. You can add a custom TintManager in your RecyclerViewDivider.Builder using the RecyclerViewDivider.Builder.tintManager method.

com.fondesa.recyclerviewdivider.manager.visibility.VisibilityManager

Used to specify a custom logic to use different visibility for each divider. You can add a custom VisibilityManager in your RecyclerViewDivider.Builder using the RecyclerViewDivider.Builder.visibilityManager method.