Allan Macmillan
Allan Macmillan

Reputation: 1491

Spinner Unselectable

I have a Spinner where a user selects an item from. When it is submitted to the db, i then want that Spinner to be unselectable. Just to display the item that was selected but not allowing the user to change it.

Is this possible and if so how?

Upvotes: 0

Views: 738

Answers (1)

Héctor Valls
Héctor Valls

Reputation: 26084

Spinner class has a method for that:

 spinner.setEnabled(false);

Upvotes: 4

Related Questions