Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fcaldarelli/9f6fb10d759a8ba5a93f27bc509de178 to your computer and use it in GitHub Desktop.
Save fcaldarelli/9f6fb10d759a8ba5a93f27bc509de178 to your computer and use it in GitHub Desktop.
RecyclerView Vertical Space Item Decoration
public class VerticalSpaceItemDecoration extends RecyclerView.ItemDecoration {
private final int verticalSpaceHeight;
public VerticalSpaceItemDecoration(int verticalSpaceHeight) {
this.verticalSpaceHeight = verticalSpaceHeight;
}
@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent,
RecyclerView.State state) {
outRect.bottom = verticalSpaceHeight;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment