我正在使用此库创建卡片CARD
等视图它运行良好,但现在我尝试使用RecyclerView实现相同的功能。我已经使用此代码重叠了所有视图:
public class ItemDecorator extends RecyclerView.ItemDecoration {
private final int mSpace;
public ItemDecorator(int space) {
this.mSpace = space;
}
@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
int position = parent.getChildAdapterPosition(view);
if (position != 0)
outRect.top = mSpace;
}
}
现在我想要动画将所有项目重叠到第一项当滚动像库提到。我怎么能实现这个或是否可能?
答案 0 :(得分:-1)
我没有回答这个问题,只是提出并提出建议。在使用github中的任何库之前,请检查贡献者的数量和拉取请求的数量。