Spinner 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Spinner(Context) |
使用指定內容的主題建構新的微調器。 |
Spinner(Context, IAttributeSet) |
使用指定內容的主題和提供的屬性集,建構新的微調器。 |
Spinner(Context, SpinnerMode) |
使用指定內容的主題和提供的顯示選項模式,建構新的微調器。 |
Spinner(IntPtr, JniHandleOwnership) |
建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。 |
Spinner(Context, IAttributeSet, Int32) |
使用指定內容的主題、提供的屬性集和預設樣式屬性,建構新的微調器。 |
Spinner(Context, IAttributeSet, Int32, SpinnerMode) |
使用指定內容的主題、提供的屬性集和預設樣式屬性,建構新的微調器。 |
Spinner(Context, IAttributeSet, Int32, Int32, SpinnerMode) |
使用指定內容的主題、提供的屬性集和預設樣式,建構新的微調器。 |
Spinner(Context, IAttributeSet, Int32, Int32, SpinnerMode, Resources+Theme) |
使用指定內容的主題建構新的微調器。 |
Spinner(Context)
使用指定內容的主題建構新的微調器。
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;)V", "")]
public Spinner (Android.Content.Context? context);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;)V", "")>]
new Android.Widget.Spinner : Android.Content.Context -> Android.Widget.Spinner
參數
- context
- Context
檢視在中執行的內容,其可存取目前的主題、資源等。
- 屬性
備註
使用指定內容的主題建構新的微調器。
的 android.widget.Spinner.Spinner(android.content.Context)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
Spinner(Context, IAttributeSet)
使用指定內容的主題和提供的屬性集,建構新的微調器。
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;)V", "")]
public Spinner (Android.Content.Context? context, Android.Util.IAttributeSet? attrs);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;)V", "")>]
new Android.Widget.Spinner : Android.Content.Context * Android.Util.IAttributeSet -> Android.Widget.Spinner
參數
- context
- Context
檢視在中執行的內容,其可存取目前的主題、資源等。
- attrs
- IAttributeSet
擴充檢視之 XML 標籤的屬性。
- 屬性
備註
使用指定內容的主題和提供的屬性集,建構新的微調器。
的 android.widget.Spinner.Spinner(android.content.Context, android.util.AttributeSet)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
Spinner(Context, SpinnerMode)
使用指定內容的主題和提供的顯示選項模式,建構新的微調器。
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;I)V", "")]
public Spinner (Android.Content.Context? context, Android.Widget.SpinnerMode mode);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;I)V", "")>]
new Android.Widget.Spinner : Android.Content.Context * Android.Widget.SpinnerMode -> Android.Widget.Spinner
參數
- context
- Context
檢視在中執行的內容,其可存取目前的主題、資源等。
- mode
- SpinnerMode
描述使用者如何從微調器選取選項的常數。
- 屬性
備註
使用指定內容的主題和提供的顯示選項模式,建構新的微調器。 mode
可以是 或#MODE_DROPDOWN
的#MODE_DIALOG
其中一個。
的 android.widget.Spinner.Spinner(android.content.Context, int)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
Spinner(IntPtr, JniHandleOwnership)
建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。
protected Spinner (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Widget.Spinner : nativeint * Android.Runtime.JniHandleOwnership -> Android.Widget.Spinner
參數
- transfer
- JniHandleOwnership
JniHandleOwnership,指出如何處理javaReference
備註
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
Spinner(Context, IAttributeSet, Int32)
使用指定內容的主題、提供的屬性集和預設樣式屬性,建構新的微調器。
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;I)V", "")]
public Spinner (Android.Content.Context? context, Android.Util.IAttributeSet? attrs, int defStyleAttr);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;I)V", "")>]
new Android.Widget.Spinner : Android.Content.Context * Android.Util.IAttributeSet * int -> Android.Widget.Spinner
參數
- context
- Context
檢視在中執行的內容,其可存取目前的主題、資源等。
- attrs
- IAttributeSet
擴充檢視之 XML 標籤的屬性。
- defStyleAttr
- Int32
目前主題中的屬性,其中包含提供檢視預設值的樣式資源參考。 可以是 0,無法尋找預設值。
- 屬性
備註
使用指定內容的主題、提供的屬性集和預設樣式屬性,建構新的微調器。
的 android.widget.Spinner.Spinner(android.content.Context, android.util.AttributeSet, int)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
Spinner(Context, IAttributeSet, Int32, SpinnerMode)
使用指定內容的主題、提供的屬性集和預設樣式屬性,建構新的微調器。
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;II)V", "")]
public Spinner (Android.Content.Context? context, Android.Util.IAttributeSet? attrs, int defStyleAttr, Android.Widget.SpinnerMode mode);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;II)V", "")>]
new Android.Widget.Spinner : Android.Content.Context * Android.Util.IAttributeSet * int * Android.Widget.SpinnerMode -> Android.Widget.Spinner
參數
- context
- Context
檢視在中執行的內容,其可存取目前的主題、資源等。
- attrs
- IAttributeSet
擴充檢視之 XML 標籤的屬性。
- defStyleAttr
- Int32
目前主題中的屬性,其中包含提供檢視預設值的樣式資源參考。 可以是 0,無法尋找預設值。
- mode
- SpinnerMode
描述使用者如何從微調器選取選項的常數。
- 屬性
備註
使用指定內容的主題、提供的屬性集和預設樣式屬性,建構新的微調器。 mode
可能是 或 #MODE_DROPDOWN
的#MODE_DIALOG
其中一個,並決定使用者如何從微調器中選取選擇。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
Spinner(Context, IAttributeSet, Int32, Int32, SpinnerMode)
使用指定內容的主題、提供的屬性集和預設樣式,建構新的微調器。
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;III)V", "")]
public Spinner (Android.Content.Context? context, Android.Util.IAttributeSet? attrs, int defStyleAttr, int defStyleRes, Android.Widget.SpinnerMode mode);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;III)V", "")>]
new Android.Widget.Spinner : Android.Content.Context * Android.Util.IAttributeSet * int * int * Android.Widget.SpinnerMode -> Android.Widget.Spinner
參數
- context
- Context
檢視在中執行的內容,其可存取目前的主題、資源等。
- attrs
- IAttributeSet
擴充檢視之 XML 標籤的屬性。
- defStyleAttr
- Int32
目前主題中的屬性,其中包含提供檢視預設值的樣式資源參考。 可以是 0,無法尋找預設值。
- defStyleRes
- Int32
樣式資源的資源標識碼,提供檢視的預設值,只有在 defStyleAttr 為 0 或無法在主題中找到時才使用。 可以是 0,無法尋找預設值。
- mode
- SpinnerMode
描述使用者如何從微調器選取選項的常數。
- 屬性
備註
使用指定內容的主題、提供的屬性集和預設樣式,建構新的微調器。 mode
可能是 或 #MODE_DROPDOWN
的#MODE_DIALOG
其中一個,並決定使用者如何從微調器中選取選擇。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
Spinner(Context, IAttributeSet, Int32, Int32, SpinnerMode, Resources+Theme)
使用指定內容的主題建構新的微調器。
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;IIILandroid/content/res/Resources$Theme;)V", "", ApiSince=23)]
public Spinner (Android.Content.Context? context, Android.Util.IAttributeSet? attrs, int defStyleAttr, int defStyleRes, Android.Widget.SpinnerMode mode, Android.Content.Res.Resources.Theme? popupTheme);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;IIILandroid/content/res/Resources$Theme;)V", "", ApiSince=23)>]
new Android.Widget.Spinner : Android.Content.Context * Android.Util.IAttributeSet * int * int * Android.Widget.SpinnerMode * Android.Content.Res.Resources.Theme -> Android.Widget.Spinner
參數
- context
- Context
檢視在中執行的內容,其可存取目前的主題、資源等。
- attrs
- IAttributeSet
- defStyleAttr
- Int32
- defStyleRes
- Int32
- mode
- SpinnerMode
- popupTheme
- Resources.Theme
- 屬性
備註
的 android.widget.Spinner.Spinner(android.content.Context)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。