I\'m trying to smoothly scroll to last element of a list after adding an element to the arrayadapter associated with the listview. The problem is that it just scrolls to a r
Do you call arrayadapter.notifyDataSetChanged()
after you called arrayadapter.add()
? Also to be sure, smoothScrollToPosition
and setSelection
are methods available in ListView
not arrayadapter
as you have mentioned above.
In any case see if this helps: smoothScrollToPosition after notifyDataSetChanged not working in android