gpt4 book ai didi

android - recycler 查看项目装饰,getItemOffsets 仅在最后添加的项目上调用

转载 作者:行者123 更新时间:2023-11-29 18:31:02 25 4
gpt4 key购买 nike

我的回收站 View 附有元素装饰。它应该只在最后一项上添加大量填充。这很好用。但是,当我添加新项目时,getItemOffsets 仅针对最后一项(而不是 recycler view 中的每一项)调用。这样,我最终在每个项目上都有这么大的填充。

添加新 View 时,如何删除其余 View 的正确填充?我想以正确的方式添加项目以保留动画

public void onItemInserted(Card card, int position){
cardList.add(card);
notifyItemInserted(getItemCount() -1);
}

我的元素抵消方法:

@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, State state) {
super.getItemOffsets(outRect, view, parent, state);
outRect.top = horizontalSpace;
outRect.bottom = horizontalSpace;
outRect.left = horizontalSpace;
outRect.right = 0;

if (parent.getChildAdapterPosition(view) == parent.getChildCount() - 1){
outRect.right = endSpace;
}
}

最佳答案

getItemOffsets() 仅为最后一项调用。所以,旧元素的装饰永远不会被重新存储。发生这种情况是因为您调用了:notifyItemInserted(getItemCount() -1);

为了调用最后两项的 getItemOffsets(),您必须:

public void onItemInserted(){
items++;
int lastPosition = getItemCount() - 1;
if(lastPosition > 0) {
// Request to redraw last two items. So, new item will receive proper padding and old item will restore to the default position
notifyItemRangeChanged(lastPosition - 1, lastPosition);
} else {
notifyItemChanged(lastPosition);
}
}

此外,正如您自己提到的,您应该在 getItemOffsets() 期间使用 state.getItemCount() 而不是 parent.getChildAdapterPosition(view)

关于android - recycler 查看项目装饰,getItemOffsets 仅在最后添加的项目上调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56276953/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com