Is it possible to make a ListView populate from the bottom?

You can have the ListView stack its items from the bottom up using a simple XML property
under the xml –

<ListView 
    android:stackFromBottom="true"
...
></ListView>

Please read @The Berga answer to otherwise this won’t work.

Leave a Comment