How is best method to append or prepend ListView ?
A starting point is this tutorial.
adapter = new ListViewAdapter(MainActivity.this, numberlist);
// Binds the Adapter to the ListView listview.setAdapter(adapter);
But i think this method is reloading the list.
There are other ways of implementing or it would be best?