Ilya Myasoedov

Results 3 comments of Ilya Myasoedov

I have found the solution. You have to add touchlistener like this. ``` ... decoration = new StickyHeaderDecoration(adapter); recyclerView.addOnItemTouchListener(new StickyHeadersTouchListener(recyclerView, decoration)) ... ``` code for StickyHeadersTouchListener: ``` public class StickyHeadersTouchListener...

``` `public class StickyHeaderDecoration extends RecyclerView.ItemDecoration { public static final long NO_HEADER_ID = -1L; private Map mHeaderCache; private StickyHeaderAdapter mAdapter; private boolean mRenderInline; private int headersMargin = 0; /** *...

@fengdexunmi