I need to add to add ListView with complicated items background: different for even/odd and rounded corners at the top and bottom. It looks like this:
In your ListView, set a paddingBottom and clipToPadding="false".
ListView
paddingBottom
clipToPadding="false"
This also works for RecyclerView.
RecyclerView
Only use android:scrollbarStyle="outsideOverlay" if you want the scroll bar to not overflow into the padded area.
android:scrollbarStyle="outsideOverlay"