views:

22

answers:

1

Hi, i have used the following code to create table row

TableRow TRow = new TableRow(a);
TextView TxtViewProvider = new TextView(a);
 TxtViewProvider.setText(gradeText);
  // TxtViewProvider.setBackgroundColor(Color.RED);
  if (bold == 1)
   TxtViewProvider.setTypeface(Typeface.DEFAULT_BOLD);
  TxtViewProvider.setTextColor(Color.BLACK);
  TxtViewProvider.setPadding(Static.getDipOf(15, a), 0, 0, 0);
 TxtViewProvider.setWidth(getDipOf(240, a));
  TRow.addView(TxtViewProvider);

TxtViewProvider = new TextView(a);
TxtViewProvider.setText(gradeCode);
 TxtViewProvider.setBackgroundColor(Color.GREEN);
 if (bold > 0)
   TxtViewProvider.setTypeface(Typeface.DEFAULT_BOLD);
  TxtViewProvider.setTextColor(Color.BLACK);

  TRow.addView(TxtViewProvider);

  TRow.setBackgroundColor(Color.WHITE);
  TableLayout.LayoutParams params = new TableLayout.LayoutParams();
   params.setMargins(0, 0, 0, Static.getDipOf(1, a));

  table.addView(TRow, params);

and i'm using this in a viewflipper but i need to reload this page again and again. But the problem i face is all the data i created first are there when i load it again ,
Can anyone please suggest me a way to remove this dynamically created TableRows
Thanks

A: 

You can call removeAllViews on the table to remove all the rows and start over.

Mayra
Thank you it is working for me...
Labeeb P