I have a little problem. I create a spinner in code using: spinner = new Spinner(getApplicationContext());, but I don’t know how I can add items to this spinner, but this items should be images view, without text. Do you know any tutorial to solve this problem?
I have a little problem. I create a spinner in code using: spinner =
Share
You have to implement custom adapter for your spinner and custom view for one item.
You can look at this Android Spinner: Custom Adapter Display