Reputation: 333
I know how to scroll all the way down to the last item, but I am trying to go to the bottom of the list with out the scroll animation.
Upvotes: 0
Views: 106
Reputation: 272
You can go on any element like this YourListView.setSelectionFromTop(PositionYouwanttosee, 0); Call this method after setting your listView adapter
Upvotes: 1
Reputation: 5795
<ListView
android:stackFromBottom="true"
...
></ListView>
or listView.setSelection(value)
This one ?
Upvotes: 2