DatePickerDialog 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
DatePickerDialog(Context) |
使用父內容的預設日期選擇器對話框主題,為目前日期建立新的日期選擇器對話方塊。 |
DatePickerDialog(Context, Int32) |
建立目前日期的新日期選擇器對話框。 |
DatePickerDialog(IntPtr, JniHandleOwnership) |
建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。 |
DatePickerDialog(Context, DatePickerDialog+IOnDateSetListener, Int32, Int32, Int32) |
使用父內容的預設日期選擇器對話框主題,為目前日期建立新的日期選擇器對話方塊。 |
DatePickerDialog(Context, EventHandler<DatePickerDialog.DateSetEventArgs>, Int32, Int32, Int32) | |
DatePickerDialog(Context, Int32, DatePickerDialog+IOnDateSetListener, Int32, Int32, Int32) |
使用父內容的預設日期選擇器對話框主題,為目前日期建立新的日期選擇器對話方塊。 |
DatePickerDialog(Context, Int32, EventHandler<DatePickerDialog.DateSetEventArgs>, Int32, Int32, Int32) |
DatePickerDialog(Context)
使用父內容的預設日期選擇器對話框主題,為目前日期建立新的日期選擇器對話方塊。
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;)V", "", ApiSince=24)]
public DatePickerDialog (Android.Content.Context context);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;)V", "", ApiSince=24)>]
new Android.App.DatePickerDialog : Android.Content.Context -> Android.App.DatePickerDialog
參數
- context
- Context
父內容
- 屬性
備註
使用父內容的預設日期選擇器對話框主題,為目前日期建立新的日期選擇器對話方塊。
的 android.app.DatePickerDialog.DatePickerDialog(android.content.Context)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
DatePickerDialog(Context, Int32)
建立目前日期的新日期選擇器對話框。
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;I)V", "", ApiSince=24)]
public DatePickerDialog (Android.Content.Context context, int themeResId);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;I)V", "", ApiSince=24)>]
new Android.App.DatePickerDialog : Android.Content.Context * int -> Android.App.DatePickerDialog
參數
- context
- Context
父內容
- themeResId
- Int32
要擴充此對話框之主題的資源標識符,或使用 0
父 context
代的預設警示對話主題
- 屬性
備註
建立目前日期的新日期選擇器對話框。
的 android.app.DatePickerDialog.DatePickerDialog(android.content.Context, int)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
DatePickerDialog(IntPtr, JniHandleOwnership)
建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。
protected DatePickerDialog (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.App.DatePickerDialog : nativeint * Android.Runtime.JniHandleOwnership -> Android.App.DatePickerDialog
參數
- transfer
- JniHandleOwnership
JniHandleOwnership,指出如何處理javaReference
備註
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
DatePickerDialog(Context, DatePickerDialog+IOnDateSetListener, Int32, Int32, Int32)
使用父內容的預設日期選擇器對話框主題,為目前日期建立新的日期選擇器對話方塊。
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/app/DatePickerDialog$OnDateSetListener;III)V", "")]
public DatePickerDialog (Android.Content.Context context, Android.App.DatePickerDialog.IOnDateSetListener? listener, int year, int month, int dayOfMonth);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/app/DatePickerDialog$OnDateSetListener;III)V", "")>]
new Android.App.DatePickerDialog : Android.Content.Context * Android.App.DatePickerDialog.IOnDateSetListener * int * int * int -> Android.App.DatePickerDialog
參數
- context
- Context
父內容
- listener
- DatePickerDialog.IOnDateSetListener
- year
- Int32
- month
- Int32
- dayOfMonth
- Int32
- 屬性
備註
的 android.app.DatePickerDialog.DatePickerDialog(android.content.Context)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
DatePickerDialog(Context, EventHandler<DatePickerDialog.DateSetEventArgs>, Int32, Int32, Int32)
public DatePickerDialog (Android.Content.Context context, EventHandler<Android.App.DatePickerDialog.DateSetEventArgs> callBack, int year, int monthOfYear, int dayOfMonth);
new Android.App.DatePickerDialog : Android.Content.Context * EventHandler<Android.App.DatePickerDialog.DateSetEventArgs> * int * int * int -> Android.App.DatePickerDialog
參數
- context
- Context
- year
- Int32
- monthOfYear
- Int32
- dayOfMonth
- Int32
備註
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
DatePickerDialog(Context, Int32, DatePickerDialog+IOnDateSetListener, Int32, Int32, Int32)
使用父內容的預設日期選擇器對話框主題,為目前日期建立新的日期選擇器對話方塊。
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;ILandroid/app/DatePickerDialog$OnDateSetListener;III)V", "")]
public DatePickerDialog (Android.Content.Context context, int themeResId, Android.App.DatePickerDialog.IOnDateSetListener? listener, int year, int monthOfYear, int dayOfMonth);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;ILandroid/app/DatePickerDialog$OnDateSetListener;III)V", "")>]
new Android.App.DatePickerDialog : Android.Content.Context * int * Android.App.DatePickerDialog.IOnDateSetListener * int * int * int -> Android.App.DatePickerDialog
參數
- context
- Context
父內容
- themeResId
- Int32
- listener
- DatePickerDialog.IOnDateSetListener
- year
- Int32
- monthOfYear
- Int32
- dayOfMonth
- Int32
- 屬性
備註
的 android.app.DatePickerDialog.DatePickerDialog(android.content.Context)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
DatePickerDialog(Context, Int32, EventHandler<DatePickerDialog.DateSetEventArgs>, Int32, Int32, Int32)
public DatePickerDialog (Android.Content.Context context, int theme, EventHandler<Android.App.DatePickerDialog.DateSetEventArgs> callBack, int year, int monthOfYear, int dayOfMonth);
new Android.App.DatePickerDialog : Android.Content.Context * int * EventHandler<Android.App.DatePickerDialog.DateSetEventArgs> * int * int * int -> Android.App.DatePickerDialog
參數
- context
- Context
- theme
- Int32
- year
- Int32
- monthOfYear
- Int32
- dayOfMonth
- Int32
備註
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。