M1cha / MultiSelectSpinner

A spinner control for Android that supports multiple selection.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MultiSelectSpinner

A spinner control for Android that supports multiple selection.

MultiSelectSpinner dropped   MultiSelectSpinner closed

Usage:

String[] strings = { "Red", "Blue", "Green" };

MultiSelectSpinner mySpin = (MultiSelectSpinner)findViewById(R.id.my_spin);
mySpin.setItems(strings);

// ...

List<String> selected = mySpin.getSelectedStrings();

About

A spinner control for Android that supports multiple selection.


Languages

Language:Java 100.0%