Is there a way to programmatically scroll to the top of a NestedScrollView by also triggering the scroll events for the parent? smoothScrollTo(x, y)
NestedScrollView
smoothScrollTo(x, y)
Another way to smooth scroll NestedScrollView to all the way up or down is using fullScroll(direct) function
fullScroll(direct)
nestedScrollView.fullScroll(View.FOCUS_DOWN); nestedScrollView.fullScroll(View.FOCUS_UP);