void init()
{
intcolumnwidth1 = int_scr_wd*55;
intcolumnwidth1 = intcolumnwidth1/100;
for (int i = 0; i < strarr.length-1; i++)
{
strinarr = fun1.split(strarr[i].trim(),"^");
tr1 = (TableRow) new TableRow(this);
txt1=new TextView(this);
txt1.setWidth(intcolumnwidth1);
txt1.setText(strinarr[0]);
tr1.addView(txt1);
tl.addView(tr1,new TableLayout.LayoutParams(layoutParams));
}
}
情景是這樣的,當我第一次打開這個頁面時,它動態地在表格佈局中添加行......但是如果在數據庫更改一段時間後數據......當我點擊刷新按鈕時,它會在表格佈局中添加舊數據之後的新數據......我需要的是如何刷新或刪除已存在於表格佈局中的textview的解決方案...如何刪除表格佈局在Android中的表格行
thanx ..
我認爲這是極不可能的行將具有靜態ID如果他們動態添加。 – 2011-04-05 14:49:49