I have a Spinner
with a lot of items inside, which makes the user scroll too much to find the item he/she wants.
Since items are mainly 4 or 5 letters, I could easily put several per row, like 2 or 3 for a start.
I tried to play with adapters but failed, and I think the logic behind this idea is flawed (1 row == 1 item).
A workaround could be to get rid of the Spinner
and make a simple button grid dialog, but it seems quite an overkill to me.
How can I make a multicolumn clickable Spinner
?
Here are the somehow relevant posts I saw :
- How to display a two column ListView in Android?, Multiple Columns on a Spinner?, MultiColumn List with drop down spinner, which are not really the problem I face (items in different columns are supposed to be independantly)
- Items in multiple columns - spinner which answer doesn't work.
- Android Spinner items as a grid which answer is interesting but I cannot understand how to use OP code (gives me a grid of gridviews)