9

For Example, I have a layout like this:

<ScrollView>
  <LinearLayout>
    <LinearLayout>
         ...
    </LinearLayout>
    <LinearLayout>
         ...
    </LinearLayout>
    <LinearLayout>
         <TextView>
         </TextView>
    </LinearLayout>
  </LinearLayout>
</ScrollView> 

My TextView have long content. Now I can scroll the ScrollView manually to the end of TextView content. In the code, I write: scrview.scrollTo(0, 800);, with scrview is my ScrollView. It supposed to scroll to the middle of the TextView content. But when running, it only scrolled to the start of the TextView and can't scroll through the TextView content.

Does anybody know what causing this problems?

EDIT: I found it. Seems like I call scrollTo too soon. Using

scrview.post(new Runnable() {
                public void run() {
                    scrview.scrollTo(0, 800);
                }
            }); 

instead and it works. Posted the answer for anyone getting same problem.

3 Answers 3

22

I found it. Seems like I call scrollTo too soon. Using

scrview.post(new Runnable() {
                public void run() {
                    scrview.scrollTo(0, 800);
                }
            }); 

instead and it works. Posted the answer for anyone getting same problem.

Sign up to request clarification or add additional context in comments.

2 Comments

800 milliseconds is a long time to wait. Is it really necessary and is there a way to do this without picking an arbitrary time delay that may be too long or short?
@EdwinEvans this answer solved a related issue for me without the need for arbitrary delay.
2

First of all, if all your LinearLayouts have the same orientation, why you don't simply create it only once? If I'm not wrong, ScrollView can only have 1 child (1 direct child). Maybe that's probably the reason of your problems. However, if you still want those 3 LinearLayouts, you can create a FrameLayout as a parent to hold them and make that FrameLayout the child of the ScrollView

1 Comment

My bad. My question is not clear enough. This is just the sample code for everyone easy to understand so I forgot some detail. I've already have a parent view hold all the view inside ScrollView. And this problems still occurred. I edited my question
0

You have to call to scrollTo inside a runnable because the scrollview has not beed layouted yet, so when using a runnable you can experiment screen blinking. To solve this issue, you can listen for lauyout changes on scrollview like this:

scrollview.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
            @Override
            public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
                scrollview.scrollTo(x, y)
            }
        });

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.