项目重叠到第一项Recyclerview

时间:2017-10-05 13:45:50

标签: android

我正在使用此库创建卡片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;
    }
}

现在我想要动画将所有项目重叠到第一项当滚动像库提到。我怎么能实现这个或是否可能?

1 个答案:

答案 0 :(得分:-1)

我没有回答这个问题,只是提出并提出建议。在使用github中的任何库之前,请检查贡献者的数量和拉取请求的数量。