我正在用ListActivity編寫一個應用程序,其頁腳的內容根據特定情況非常動態。我想這樣使用setFooterView:在代碼中添加頁腳到ListView中
Button addButton = new Button(this);
addButton.setText("Add");
addButton.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, 35));
lv.addFooterView(addButton, null, true);
但它會導致運行時異常。雖然使用layoutInflater可能適用於XML佈局(我用它作爲標題),但是如何添加具有編程構造視圖的頁腳?
請加上你的logcat .. –