public class Spinner extends AbsSpinner implements DialogInterface.OnClickListener
java.lang.Object ↳android.view.View ↳android.view.ViewGroup ↳android.widget.AdapterView<android.widget.SpinnerAdapter> ↳android.widget.AbsSpinner ↳android.widget.Spinner 已知的直接子类 AppCompatSpinnerA view that displays one child at a time and lets the user pick among them. The items in the Spinner come from the Adapter associated with this view. 其是一个每次值显示一个子项的视图,让用户可以从中选取。这些在Spinner中的项来自与此视图关联的Adapter。
See the Spinners guide. 请参考Spinners。
Use a dialog window for selecting spinner options. 使用一个对话框窗口来选择Spinner的选项。
intMODE_DROPDOWNUse a dropdown anchored to the Spinner for selecting spinner options. 使用一个下拉按钮来选择Spinner的选项。
Constructs a new spinner with the given context's theme. 使用指定的context的主题构造一个新的Spinner。
Spinner(Context context, int mode)Constructs a new spinner with the given context's theme and the supplied mode of displaying choices. 使用指定的context的主题和指定的显示选项的模式构造一个新的Spinner。
Spinner(Context context, AttributeSet attrs)Constructs a new spinner with the given context's theme and the supplied attribute set. 使用指定的context的主题和指定的一组属性构造一个新的Spinner。
Spinner(Context context, AttributeSet attrs, int defStyleAttr)Constructs a new spinner with the given context's theme, the supplied attribute set, and default style attribute. 使用指定的context的主题,指定的一组属性和默认的样式属性构造一个新的Spinner。
Spinner(Context context, AttributeSet attrs, int defStyleAttr, int mode)Constructs a new spinner with the given context's theme, the supplied attribute set, and default style attribute. 使用指定的context的主题,指定的一组属性和默认的样式属性构造一个新的Spinner。
Spinner(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes, int mode)Constructs a new spinner with the given context's theme, the supplied attribute set, and default styles. 使用指定的context的主题,指定的一组属性和默认的样式构造一个新的Spinner。
Spinner(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes, int mode, Resources.Theme popupTheme)Constructs a new spinner with the given context, the supplied attribute set, default styles, popup mode (one of MODE_DIALOG or MODE_DROPDOWN), and the theme against which the popup should be inflated. 使用指定的context的主题,指定的一组属性,默认的样式,弹出模式(MODE_DIALOG或MODE_DROPDOWN之一)和加载(Inflate)的弹出窗口的主题构造一个新的Spinner。
完整内容,请查看:http://www.zhdoc.net/android/reference/android/widget/Spinner.html