Android系统中TableLayout数据列表的回显清空的具体设置方法
来源:爱站网时间:2021-07-12编辑:网友分享
一般情况下,Android系统中数据列表的回显是需要从后面减去子元素的,那么TableLayout数据列表的回显清空的具体设置方法是怎么样的呢?接下来爱站技术频道小编将为大家分享TableLayout数据列表的回显清空实现思路及代码,感兴趣的朋友不要错过。
//数据列表的回显
public void shujuList(){
List
TableLayout tl = (TableLayout) findViewById(R.id.tlLayout);
Log.i(">>>", String.valueOf(tl.getChildCount()));
int j = tl.getChildCount();
if(j>1){
/*for(int i=0;i
}*/
for(int i=j;i>0;i--){
tl.removeView(tl.getChildAt(i));//必须从后面减去子元素
}
}
TableRow row = null;
for(Customer c : customerList){
row = new TableRow(this);
//id
TextView tvId = new TextView(this);
tvId.setText(c.id + "");
row.addView(tvId);
//name
TextView tvName = new TextView(this);
tvName.setText(c.name);
row.addView(tvName);
//age
TextView tvAge = new TextView(this);
tvAge.setText(c.teleNumber + "");
row.addView(tvAge);
tl.addView(row);
}
}
以上是爱站技术频道小编为大家分享的关于Android系统中TableLayout数据列表的回显清空实现思路及代码详情,如果你也刚好需要,就可以参考以上代码。