Scroll to a specific view in scroll view

前端 未结 15 1470
醉梦人生
醉梦人生 2020-12-04 14:08

I have added a scrollview and the subchilds inside the scrollview. At some point i need to scroll to a specific view.



1. 

        
15条回答
  •  半阙折子戏
    2020-12-04 14:43

    Kotlin: Try this, it works for me like charm !

    parentScrollView.post(object : Runnable {
            override fun run() {
                parentScrollView.smoothScrollTo(0, targetView.bottom)
            }
    
        })
    

提交回复
热议问题