Example usage for Java android.widget SpinnerAdapter fields, constructors, methods, implement or subclass
The text is from its open source code.
int | getCount() How many items are in the data set represented by this Adapter. |
Object | getItem(int position) Get the data item associated with the specified position in the data set. |
int | getItemViewType(int position) Get the type of View that will be created by #getView for the specified item. |
View | getView(int position, View convertView, ViewGroup parent) Get a View that displays the data at the specified position in the data set. |
int | getViewTypeCount() Returns the number of types of Views that will be created by #getView . |