How can one narrow items in a spinner by keyboard input?
I am looking for the functionality seen in HTML select on Android. Basically, I have a spinner with multiple items (hundreds in my case) and I want to be able to narrow the spinner to items relevant to keyboard input. So, if I press “71”, I will get items starting with 71….
You need to implement a filter on the adapter for your Spinner. If you aren’t using a custom adapter, you will most likely need to create one.