Mico
Mico

Reputation: 497

Is there a way to create an option group in android spinner?

does anyone know how to create an option group in android spinner? I want to do something like this:

<select>
  <optgroup label="Swedish Cars">
    <option value="volvo">Volvo</option>
    <option value="saab">Saab</option>
  </optgroup>
  <optgroup label="German Cars">
    <option value="mercedes">Mercedes</option>
    <option value="audi">Audi</option>
  </optgroup>
</select>

Demo here.

Upvotes: 2

Views: 1376

Answers (1)

2red13
2red13

Reputation: 11227

I would suggest to use a ExpandableListView and add it into a dialog

Upvotes: 2

Related Questions