Вот некоторые другие способы прокрутки вниз
fun ScrollView.scrollToBottom() {
// use this for scroll immediately
scrollTo(0, this.getChildAt(0).height)
// or this for smooth scroll
//smoothScrollBy(0, this.getChildAt(0).height)
// or this for **very** smooth scroll
//ObjectAnimator.ofInt(this, "scrollY", this.getChildAt(0).height).setDuration(2000).start()
}
Использование
Если вы уже выложили скролл
my_scroll_view.scrollToBottom()
ваше прокручиваемое представление не закончено (например: вы прокручиваете до конца в Activity onCreate
method ...)
my_scroll_view.post {
my_scroll_view.scrollToBottom()
}