I know that this has already been asked before, but none of the other responses have helped me, so I'll ask myself...
I am trying to delete all my existing rows from a TableLayout
because I want the user to be able to update the table dynamically. Other suggestions have recommended using removeAllViews()
, which is supposed to remove all child views, however this deletes rows from my other tables in the same LinearLayout
(I have a linear layout with multiple tables).
Any suggestions?
It sounds like you might be calling removeAllViews()
on the whole LinearLayout
and not the particular TableLayout
you want to clear. Double check you have some thing like:
myLinearLayout.someTableView.removeAllViews()
You need to call removeAllViews() on each TableRow:
int count = table.getChildCount();
for (int i = 0; i < count; i++) {
View child = table.getChildAt(i);
if (child instanceof TableRow) ((ViewGroup) child).removeAllViews();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With