mirror of
https://github.com/wasabeef/awesome-android-ui.git
synced 2026-05-06 00:25:42 -05:00
[GH-ISSUE #205] list item overlapped to the first item and so on when scrolling #2543
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @arpitjoshi08 on GitHub (Oct 6, 2017).
Original GitHub issue: https://github.com/wasabeef/awesome-android-ui/issues/205
i am was using this library for creating view like cards https://github.com/loopeer/CardStackView
its working well but slow down issue in scrolling when item size large. then i used this code with recyclerview .
` public class ItemDecorator extends RecyclerView.ItemDecoration {
private final int mSpace;
public ItemDecorator(int space) {
this.mSpace = space;
}
now using this its working fine and view looking like cards and items or RecyclerView has overlapped.
now i need to create view like stack, when i scrolled item bottom to top then all items overlapped to first item and so on like lib showing in link. how can be done using RecyclerView?