I have added a scrollview and the subchilds inside the scrollview. At some point i need to scroll to a specific view.
1.
Try to call view.requestFocus()
on the view you want to scroll to.
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()) })
You can use method smoothScrollTo to scroll to specific view in scroll view. - Example:
my_scroll_View.smoothScrollTo(0, editText.getBottom());
Good luck!