Home | History | Annotate | Download | only in ui

Lines Matching full:spinneradapter

1122   <li>Create a {@link android.widget.SpinnerAdapter} that provides the
1142 <p>This method takes your {@link android.widget.SpinnerAdapter} and {@link
1147 <p>That's the basic setup. However, implementing the {@link android.widget.SpinnerAdapter} and
1150 implementing various types of {@link android.widget.SpinnerAdapter} is beyond the scope of this
1151 document (you should refer to the {@link android.widget.SpinnerAdapter} class reference for more
1152 information). However, below is a simple example for a {@link android.widget.SpinnerAdapter} and
1162 Example SpinnerAdapter and OnNavigationListener
1167 <p>{@link android.widget.SpinnerAdapter} is an adapter that provides data for a spinner widget,
1168 such as the drop-down list in the action bar. {@link android.widget.SpinnerAdapter} is an interface
1172 android.widget.SpinnerAdapter} by using {@link android.widget.ArrayAdapter} implementation, which
1176 SpinnerAdapter mSpinnerAdapter = ArrayAdapter.createFromResource(this, R.array.action_list,
1213 android.widget.SpinnerAdapter}.</p>