Search code examples
javaandroidandroid-scrollview

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

  • Try below code to achieve your task :-

    scroll.fullScroll(View.FOCUS_DOWN);
    

    or

    ScrollView sv = (ScrollView)findViewById(R.id.scrl);
    sv.scrollTo(0, sv.getBottom());