Android has the transcript mode to allow to automatically scroll a list view to the bottom when new data is added to the adapter.
Can this be somehow reversed so tha
Try to use
LinkedList items = new LinkedList(); //some fictitious objectList where we're populating data for(Object obj : objectList) { items.addFirst(obj); } listAdapter.notifyDataSetChanged();