这是设置装饰的代码:-
recyclerView.addItemDecoration(new DividerItemDecoration(recyclerView.getContext(), DividerItemDecoration.HORIZONTAL));
这是xml:-
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<size android:height="1dp" />
<solid android:color="@android:color/black" />
</shape>
我尝试使用DividerItemDecoration.setDrawable(Drawable drawable)
设置可绘制对象
并将我主题中的android:listDivider
项设置为指向xml。
我也尝试过将宽度设置为1dp。绝对没有用。
感谢您的帮助。