Each list item in my ListView has a button on it. When clicked, the list item grows in height and presents some extra options.
When that list item is near the bottom, those options run off screen. I'd like to make my ListView scroll a small amount to ensure the entire list item is visible.
setSelection(position) will accomplish this. However, it is not desirable as it scrolls that item to the top of the list. I just want the list item to scroll up as little as it takes to get the entire item on the screen.
Ideas?