Android ScrollView Scroll to the top

Source: Internet
Author: User

Sometimes use ScrollView, inside the control is more, open the interface, will slip to the bottom, if you want to set sliding to the top, there are generally two ways
1. Use Fullscrol (), Scrollview.fullscroll (scrollview.focus_down); scroll to the bottom

Scrollview.fullscroll (scrollview.focus_up); scroll to top

It is important to note that the method cannot be called directly
Because many of the Android functions are synchronized based on Message Queuing, an action is required,
After AddView, not equal to the immediate display, but in the queue to wait for processing, although soon, but if the call fullscroll immediately, the view may not be displayed, so it will fail
Should be updated in the new thread via handler

Scrollview.post (new  Runnable () {            @Override            publicvoid  run () {                Scrollview.fullscroll (SCROLLVIEW.FOCUS_UP);            }        });

2. If there are other controls above the ScrollView control, you can set the focus, and the scroll bar can slide to the top
Let ProgressBar get focus, scroll bar to top
Progressbar.setfocusable (TRUE);
Progressbar.setfocusableintouchmode (TRUE);
Progressbar.requestfocus ();

Android ScrollView Scroll to the top

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.