ShamylZakariya / StickyHeaders

Adapter and LayoutManager for Android RecyclerView which enables sticky header positioning.
MIT License
1.4k stars 185 forks source link

This lib doesn't seem to support clipToPadding = false on RecyclerView #116

Open luongvo opened 4 years ago

luongvo commented 4 years ago

I update to add a bottom padding on the RecyclerView to expect to show an padding for the last item but it doesn't

<androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:clipToPadding="false"
        android:paddingBottom="50dp"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

20200709_162547