'How do I make ScrollView auto scroll to the bottom?

How can i make it once the ScrollView is out of the screen it will auto scroll to the bottom?



Solution 1:[1]

The below code should work

scrollView.post {
   scrollView.fullScroll(View.FOCUS_DOWN)
}

Solution 2:[2]

scrollView.post(new Runnable() {
               @Override
               public void run() {
                 scrollView.fullScroll(View.FOCUS_DOWN);
               }
});

This worked for me

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Achintha Isuru
Solution 2 Jaufarusadique