How to scroll ListView to top or other position
Hi,
Recently I want to scroll my ListView widget in my application to top.
Below you can download source code of Android project
To do this I made simple call:
int n = 0 // listView desire position.
listView.smoothScrollToPosition(n);
That’s all 🙂 .This code working since Android 8 API or Android 2.2
0 Comments