Skip to content

Instantly share code, notes, and snippets.

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

Zuhaib Ahmad xuhaibahmad

💭
¯\_(ツ)_/¯
View GitHub Profile
@staltz
staltz / introrx.md
Last active July 17, 2025 11:35
The introduction to Reactive Programming you've been missing
@yqritc
yqritc / gist:ccca77dc42f2364777e1
Last active January 25, 2025 17:43
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;
    }