答案 0 :(得分:0)
您可以使用RecyclerView.ItemDecoration。
ItemDecoration允许应用程序从适配器的数据集向特定项视图添加特殊的绘图和布局偏移。这对于在项目,突出显示,可视分组边界等之间绘制分隔符非常有用。
您可能必须覆盖ItemDecoration#getItemOffsets
才能正确定位视图。
@Override
public void getItemOffsets(Rect outRect, int itemPosition, RecyclerView parent) {
if (mOrientation == HORIZONTAL_LIST)
// set outRect offsets here
}