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
This resolves the problem:
...
ListView lv;
ArrayAdapter adapter;
ArrayList aList;
...
lv = (ListView) findViewById(R.id.mylist);
aList = new ArrayList();
adapter = new ArrayAdapter(getApplicationContext(), android.R.layout.simple_spinner_item, aList);
lv.setAdapter(aAdapter);
...
adapter.insert ("Some Text 1", 0);
adapter.insert ("Some Text 2", 0);
adapter.insert ("Some Text 3", 0);
...