Skip to content

Instantly share code, notes, and snippets.

@siifii
Last active February 23, 2020 13:16
Show Gist options
  • Save siifii/6a4f1992d7dc685f43560f4c48aac735 to your computer and use it in GitHub Desktop.
Save siifii/6a4f1992d7dc685f43560f4c48aac735 to your computer and use it in GitHub Desktop.
Adding padding for recycerview's last item.
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="0dp"
android:layout_height="0dp"
------
android:layout_marginBottom="40dp"
android:clipToPadding="false"
------
android:paddingBottom="56dp"
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
app:spanCount="2"
tools:listitem="@layout/my_list_item" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment