Activity.FindViewById 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
FindViewById(Int32) |
尋找由 中 |
FindViewById<T>(Int32) |
從 XML 配置資源尋找 id 屬性所識別的檢視。 |
FindViewById(Int32)
尋找由 中#onCreate
處理之 XML 屬性所android:id
識別的檢視。
[Android.Runtime.Register("findViewById", "(I)Landroid/view/View;", "GetFindViewById_IHandler")]
public virtual Android.Views.View? FindViewById (int id);
[<Android.Runtime.Register("findViewById", "(I)Landroid/view/View;", "GetFindViewById_IHandler")>]
abstract member FindViewById : int -> Android.Views.View
override this.FindViewById : int -> Android.Views.View
參數
- id
- Int32
要搜尋的標識碼
傳回
如果找到,則為具有指定標識符的檢視,否則 null
為
- 屬性
備註
尋找由 中#onCreate
處理之 XML 屬性所android:id
識別的檢視。
<strong>Note:</strong> 在大部分情況下 -- 視編譯程序支援而定 - 產生的檢視會自動轉換成目標類別類型。 如果目標類別類型不受限制,可能需要明確轉換。
的 android.app.Activity.findViewById(int)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
FindViewById<T>(Int32)
從 XML 配置資源尋找 id 屬性所識別的檢視。
public T? FindViewById<T> (int id) where T : Android.Views.View;
member this.FindViewById : int -> 'T (requires 'T :> Android.Views.View)
類型參數
- T
要傳回之檢視的類型(Button、ListView 等)。
參數
- id
- Int32
要尋找之檢視的標識碼。
傳回
T
如果找到或 Null,則為檢視。
備註
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。