我有一个与 FlexLayoutManager 一起使用的水平 RecyclerView。我也有一些装饰品RecyclerView.ItemDecoration
。我的 getItemOffsets 方法看起来像这样:
override fun getItemOffsets(outRect: Rect, view: View, recyclerView: RecyclerView, state: RecyclerView.State) {
super.getItemOffsets(outRect, view, recyclerView, state)
val position: Int = recyclerView.getChildAdapterPosition(view)
if(position meets some rules){
outRect.top = some values here
}
if(viewType == CERTAIN_VIEW_TYPE){
outRect.bottom = some value
}
}
..onDrawOver(){
//I draw the decorations here
}
这行得通,我设置为装饰的视图显示出来并且它们在正确的位置。
我遇到的问题是,在我向右滚动然后再向左滚动后,设置的偏移量设置outRect.top
为 0,并且我的装饰与我的项目重叠。
奇怪的是,设置的偏移量outRect.bottom
不会消失或导致任何问题。
我只是指定 outRect.top 设置的偏移量仅针对某些位置设置。
我的装饰品也没有消失,只是最初设置的边距outRect.top
不再存在
你能帮我解决这个问题吗?
谢谢
编辑: 我猜这可能是视图回收的结果,因为我看到滚动后其他项目现在有顶部偏移,即使我不打算为它们设置它