androidandroid-scrollview

Android: ScrollView force to bottom


I would like a ScrollView to start all the way at the bottom. Any methods?


Solution

  • scroll.fullScroll(View.FOCUS_DOWN) also should work.

    Put this in a scroll.Post(Runnable run)

    Kotlin Code

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