Table of Contents
- ListView や RecyclerView の下部に余白を表示したい場合、paddingBottom を設定した上で、clipToPadding に false を指定。
- padding だけだとリストの終了位置が padding で指定したところになる。 clipToPadding が大切みたい
<ListView
android:id="@+id/list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="50dp"
android:clipToPadding="false"/>