A RecyclerView's divider which can be customized with simple properties or advanced ones.
It supports:
LinearLayoutManagerGridLayoutManagerStaggeredGridLayoutManager
A basic version of the divider can be attached to a RecyclerView in these ways:
// Default configuration.
recyclerView.addDivider()OR
// Custom configuration.
context.dividerBuilder()
// [...]
.build()
.addTo(recyclerView)Each divider can be customized with various properties. These properties can have a common value for every divider or a specific value related to a divider instance.
For further information, check the wiki.
Android SDK: RecyclerViewDivider requires a minimum API level of 14 (the same of RecyclerView).
AndroidX: this library requires AndroidX. To use it in a project without AndroidX, refer to the version 2.x
You can download a jar from GitHub's releases page or grab it from mavenCentral().
dependencies {
implementation 'com.github.fondesa:recycler-view-divider:x.x.x'
}

