Skip to content

Instantly share code, notes, and snippets.

View xuhaibahmad's full-sized avatar
💭
¯\_(ツ)_/¯

Zuhaib Ahmad xuhaibahmad

💭
¯\_(ツ)_/¯
View GitHub Profile
@yqritc
yqritc / gist:ccca77dc42f2364777e1
Last active March 29, 2024 10:25
Equal column spacing for Android RecyclerView GridLayoutManager by using custom ItemDecoration

ItemOffsetDecoration

public class ItemOffsetDecoration extends RecyclerView.ItemDecoration {

    private int mItemOffset;

    public ItemOffsetDecoration(int itemOffset) {
        mItemOffset = itemOffset;
    }
@staltz
staltz / introrx.md
Last active June 21, 2024 12:27
The introduction to Reactive Programming you've been missing