I have in my activity a listview and an imagebutton. When I click the imagebutton I want to go to a specific position in the list (I do this by calling: setSelection(int positio
Use
listView.smoothScrollBy(0, 0); // to stop the scrolling. // followed by listView.setSelection(position) // to move to the specific position.