Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To navigate back to the beginning of a ScrollView in Android, you can use the smoothScrollToPosition() method to scroll to the first position of the ScrollView. For example, if your ScrollView is a part of a ListView or a RecyclerView, you can call the following method on the parent view:

scrollView.smoothScrollToPosition(0);

This will smoothly scroll the ScrollView to the top position, which will effectively take you back to the beginning of the ScrollView.