A set of simple ItemDecoration for Android RecyclerView.
- Drawing spacing between items.
- Drawing divider between items.
- Support both orientation: vertical and horizontal.
- Support to draw 4 styles: both, center, start, end.
- With or without around edge.
- With or without around edge.
- Currently, only support for vertical LinearLayoutManager.
- Support to draw 4 styles: both, center, start, end.
- Support marginStart, marginEnd.
Add to your project's root build.gradle
file:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add the dependency in your app/build.gradle
file:
dependencies {
implementation 'com.github.phongbm:RecyclerViewItemDecoration:$version'
}