for(int i = 0, j < table.getChildCount(); i < j; i++){
// then, you can remove the the row you want...
// for instance...
TableRow row = getChildAt(i);
if( something you want to check ) {
removeViewAt(i);
// or...
removeView(row);
}
}
标签:...,TableRow,instance,TableLayout,want,得到,removeView,check,row
From: https://blog.51cto.com/u_16166892/6525404