Is there any way to scroll a ScrollView
programmatically to a certain position?
I have created a RelativeLayout
and it has a ScrollView
and a child LinearLayout
inside ScrollView
.
I used this code for Scrolling down. but it Scroll very less
sv0.post(new Runnable() {
public void run() {
//sv0.fullScroll(View.FOCUS_DOWN);
sv0.scrollTo(1000, 1000);
}
});
Is there any way to scroll to specific location programmatically?