In your ListView, set a paddingBottom and clipToPadding="false".
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="8dp"
android:clipToPadding="false"
android:scrollbarStyle="outsideOverlay"/>
-
This also works for
RecyclerView. -
Only use
android:scrollbarStyle="outsideOverlay"if you want the scroll bar to not overflow into the padded area.