I have a horizontal scrollview which contains two different listviews. When I perform my database requests and get the response I call
listViewAdapter.notifyDataSetChanged();
on my ListView adapter which extends BaseAdapter class. The listView is well updated but my main scrollView scrolls to the listView which is currently updating (on the right or left according which is updated before or after)
How can I prevent this strange behavior ?
Thanks