Reputation: 1170
I have a GridView and one button, and I need that when the user presh the button move the gridView at the beginning.
How can I do this?
Upvotes: 0
Views: 41
Reputation: 6867
try : mGridView.smoothScrollToPosition(0);
Upvotes: 1