Scroll to a specific view in scroll view

前端 未结 15 1463
醉梦人生
醉梦人生 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:55

    For Kotlin user. If above code are not worked. Try it.

    val your_scrollview = findView...
    val your_view_inside_SV = findView...
    your_scrollview.post( { your_scrollview.scrollTo(0, your_view_inside_SV.getY().toInt()) })
    

提交回复
热议问题