Okay I have found a solution for you, what you want to do is essentially have the ListView scroll to the bottom every time. You can do this by:
ListView l = getListView();
l.setTranscriptMode(ListView.TRANSCRIPT_MODE_NORMAL);
l.setStackFromBottom(true);
If it is an Activity
, do it in onCreate
. If it is a Fragment
, do it in onViewCreated
.