I have a gridview which is populated with 10 images, when I scroll down to the last item and change the data completely, this way:
gridAdapter.values.clear();
gridAdapter.notifyDataSetChanged();
and add completely new set of 10 images.
The problem is, by default the gridView is scrolled to the bottom most item, may be because the previous scroll position was that. Its same like you scroll through a list -> click on item -> click back and the browser tries to scroll to the previous scroll position.
How can I show the top more item, instead of this behavior.