List of usage examples for android.widget ScrollView setSmoothScrollingEnabled
public void setSmoothScrollingEnabled(boolean smoothScrollingEnabled)
From source file:Main.java
/** * E.g. when using previous-next facility you need to make sure the scroll view's position is back at the top of the screen *//*www. ja va2 s .co m*/ public static void scrollToTop(int scrollViewId, Activity activity) { ScrollView sv = (ScrollView) activity.findViewById(scrollViewId); sv.fullScroll(View.FOCUS_UP); sv.setSmoothScrollingEnabled(true); }