I want to scroll my Spinner
to specific position when user clicks on it. There are more than 50 items in it. That means I want to add initial position to almost top of the dropdown menu.
Tried this, doesnt work.
spinner?.setOnTouchListener { v, event ->
v.scrollTo(v.scrollX, 0)
v.performClick()
}