Skip to content

Instantly share code, notes, and snippets.

View gillesbraun's full-sized avatar

Gilles Braun gillesbraun

  • Luxembourg
View GitHub Profile
@kassim
kassim / BottomPaddingDecoration.java
Created September 13, 2017 15:59
Adds padding to the bottom of a RecyclerView's contents
import android.graphics.Rect;
import android.support.v7.widget.RecyclerView;
import android.view.View;
public class BottomPaddingDecoration extends RecyclerView.ItemDecoration {
private final int bottomPadding;
public BottomPaddingDecoration(int bottomPadding) {
this.bottomPadding = bottomPadding;
}