Linear List
If you prefer to directly create item layouts with XML to achieve the divider effect, using simple layout_margin
for spacing, I recommend using layout_margin
.
Horizontal Divider¶
Create a drawable
file to describe the divider, which can be reused:
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/dividerDecoration" />
<size android:height="5dp" />
</shape>
Create the list:
rv.linear().divider(R.drawable.divider_horizontal).setup {
addType<DividerModel>(R.layout.item_divider)
}.models = getData()
Vertical Divider¶
Create a drawable as the divider:
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/dividerDecoration" />
<size android:width="5dp" />
</shape>
Create the list:
rv.linear(RecyclerView.HORIZONTAL).divider(R.drawable.divider_vertical).setup {
addType<DividerModel>(R.layout.item_divider_vertical)
}.models = getData()
- Here, a
Drawable
resource is used to quickly set the divider. The width and height of the Drawable determine the width and height of the divider. - For horizontal dividers, the width value of the Drawable is ignored (the actual width is determined by the RecyclerView's width).
- For vertical dividers, the height value of the Drawable is ignored (the actual height of the divider is determined by the RecyclerView's height).
Edge Dividers¶
Field | Description |
---|---|
startVisible | Indicates whether the start divider is visible |
endVisible | Indicates whether the end divider is visible |
includeVisible | Indicates whether both start and end dividers are visible |
You can control the visibility of the start and end dividers using the two fields:
rv.linear().divider {
setDrawable(R.drawable.divider_horizontal)
startVisible = true
endVisible = true
}.setup {
addType<DividerModel>(R.layout.item_divider_horizontal)
}.models = getData()
Full Wrap Dividers¶
This type of divider is called a grid divider and requires the use of DividerOrientation.GRID
, which is not supported by LinearLayoutManager.
There are two ways to achieve this:
- Use a GridLayoutManager with a spanCount of 1.
- Use separate
View
s on both sides of
the RecyclerView to draw the dividers.
The first method is recommended. Here's an example:
rv.grid().divider {
setDrawable(R.drawable.divider_horizontal)
orientation = DividerOrientation.GRID
includeVisible = true
}.setup {
addType<DividerModel>(R.layout.item_divider_vertical)
}.models = getData()
Divider Spacing¶
There are two ways to add spacing to the dividers:
-
Directly configure a
drawable
with the desired margin. Here's an example of a horizontal divider with a 16dp margin:<inset xmlns:android="http://schemas.android.com/apk/res/android" android:insetLeft="16dp" android:insetRight="16dp"> <shape> <solid android:color="@color/dividerDecoration" /> <size android:height="5dp" /> </shape> </inset>
-
Use
setMargin()
:binding.rv.linear().divider { setDivider(1, true) setMargin(16, 0, dp = true) setColor(Color.WHITE) }.setup { addType<DividerModel>(R.layout.item_divider_vertical) }