Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to scroll a ScrollView programmatically to a certain position?

I have created dynamic TableLayout which is placed in a ScrollView. So I want that on a specific action (like clicking a Button, etc.) the particular row should scroll automatically to a top position.

Is it that possible?

share|improve this question

5 Answers

up vote 23 down vote accepted
ScrollView sv = (ScrollView)findViewById(R.id.scrl);
sv.scrollTo(0, sv.getBottom());

or

sv.scrollTo(5, 10);

share|improve this answer
1  
Combining ercu's answer and a comment made on it, the best way seems to be: mScrollView.post(new Runnable() { public void run() { mScrollView.fullScroll(View.FOCUS_DOWN); } }); – sparrowt May 8 at 15:28

The answer from Pragna does not work always, try this:

mScrollView.post(new Runnable() { 
        public void run() { 
             mScrollView.scrollTo(0, mScrollView.getBottom());
        } 
});
share|improve this answer
1  
+1, this one actually works. – wsanville Feb 27 '12 at 16:20
For me this scrolled it as far down as the length of the ScrollView appears on the screen, not to the very bottom (probably as I would expect). – Vanthel Jul 22 '12 at 1:10
5  
I used mScrollView.fullScroll(mScrollView.FOCUS_DOWN); with success. – Vanthel Jul 22 '12 at 1:29
I can confirm Vanthel's findings. mScrollView.fullScroll in a post runnable did the trick. – AlanKley Apr 11 at 19:17

Use something like this:

mScrollView.scrollBy(10, 10);

or

mScrollView.scrollTo(10, 10);
share|improve this answer

Try using scrollTo method More Info

share|improve this answer

I wanted the scrollView to scroll directly after onCreateView() (not after a e.g. button click). To get it to work I needed to use a ViewTreeObserver:

mScrollView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            mScrollView.post(new Runnable() {
                public void run() {
                    mScrollView.fullScroll(View.FOCUS_DOWN);
                }
            });
        }
    });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.