I have added a scrollview and the subchilds inside the scrollview. At some point i need to scroll to a specific view.
1.
Kotlin: Try this, it works for me like charm !
parentScrollView.post(object : Runnable { override fun run() { parentScrollView.smoothScrollTo(0, targetView.bottom) } })