SimpleAdapter 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
SimpleAdapter(IntPtr, JniHandleOwnership) |
建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。 |
SimpleAdapter(Context, IList<IDictionary<String,Object>>, Int32, String[], Int32[]) |
建構函式 |
SimpleAdapter(IntPtr, JniHandleOwnership)
建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。
protected SimpleAdapter (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Widget.SimpleAdapter : nativeint * Android.Runtime.JniHandleOwnership -> Android.Widget.SimpleAdapter
參數
- transfer
- JniHandleOwnership
JniHandleOwnership,指出如何處理javaReference
備註
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
SimpleAdapter(Context, IList<IDictionary<String,Object>>, Int32, String[], Int32[])
建構函式
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Ljava/util/List;I[Ljava/lang/String;[I)V", "")]
public SimpleAdapter (Android.Content.Context? context, System.Collections.Generic.IList<System.Collections.Generic.IDictionary<string,object>>? data, int resource, string[]? from, int[]? to);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Ljava/util/List;I[Ljava/lang/String;[I)V", "")>]
new Android.Widget.SimpleAdapter : Android.Content.Context * System.Collections.Generic.IList<System.Collections.Generic.IDictionary<string, obj>> * int * string[] * int[] -> Android.Widget.SimpleAdapter
參數
- context
- Context
與這個 SimpleAdapter 相關聯的檢視執行所在的內容
- data
- IList<IDictionary<String,Object>>
地圖清單。 List 中的每個項目都會對應至清單中的一個數據列。 地圖包含每個數據列的數據,而且應該包含 「from」 中指定的所有專案
- resource
- Int32
定義此列表項目檢視之檢視之檢視之檢視的檢視配置資源標識碼。 版面配置檔案至少應包含 「to」 中定義的具名檢視
- from
- String[]
將加入至與每個項目相關聯之 Map 的數據行名稱清單。
- to
- Int32[]
應該在 「from」 參數中顯示數據行的檢視。 這些都應該是 TextViews。 此清單中的第一個 N 檢視會指定from 參數中前 N 個資料行的值。
- 屬性
備註
建構函式
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。