Thursday, January 14, 2016

Clip to Padding.

I was wondering, how to add empty space to the end of ListView for banner. And show this space only if ListView is scrolled to bottom.

It turned out easier than I thought.
<ListView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="50dp"
    android:clipToPadding="false"/>

No comments:

Post a Comment