我正在使用Xamarin
並且有一個關於從Layout
獲取View
的問題。如何從佈局獲取視圖?
如果我有一個叫的Layout
,我怎麼能從這裏得到View
?
我曾嘗試這樣的代碼:
View v = Inflate(Resource.Layout.custom_info_window, null);
這是我收到的錯誤:
錯誤CS0103: '充氣' 的名稱在當前環境中不存在
我可以請這個幫忙嗎?
在此先感謝
編輯
這裏是我的充氣代碼:
LayoutInflater inflater =(LayoutInflater)Context.GetSystemService(Context.LayoutInflaterService);
這是錯誤我得到:
Error CS0120: An object reference is required for the non-static field, method, or property 'Android.Content.Context.GetSystemService(string)'
您需要使用佈局充氣器..實際上充氣是佈局充氣器類的子功能。爲更多參考http://developer.android.com/reference/android/view/LayoutInflater.html – WISHY