every time i change my ListView
in Activity
it jumps to first
I use this code at the first to set the listView
listView.setAdapter(new ArrayAdapter<String>(this,
R.layout.home_row, R.id.home_row_price, items));
then I want to add some more arrays to list view so i use
listView.setAdapter(new ArrayAdapter<String>(this,
R.layout.home_row, R.id.home_row_price, items));
again with new String[] items
but every time it jumps to first of the listView what can I do ?