我想動態地將一個佈局添加到ScrollView中。我嘗試了一切,我發現在谷歌和這裏,但沒有機會!他們中的大多數會導致「對象引用」錯誤。以下是其中一個代碼:mono for android - 動態添加布局到滾動視圖
LayoutInflater layoutInflater = (LayoutInflater) this.GetSystemService(Context.LayoutInflaterService);
View view = new View(this);
view = layoutInflater.Inflate(Resource.Layout.MYLAYOUT, null);
MYSCROLLVIEW.AddView(view);
但它會導致「對象引用未設置爲對象的實例」。
在這之後,我想使用內部MYLAYOUT控件(視圖),例如:
MYLAYOUT.textView1.Text = 「示例」;
你從哪裏得到的'Exception'?爲什麼你實例化一個'View'然後丟棄它? – Cheesebaron 2013-03-08 12:52:12
我得到錯誤在MYSCROLLVIEW.AddView(view);我調試了代碼,看起來在這行「視圖」對象爲空! – 2013-03-09 03:18:03