como excluir a linha da tabela no layout da tabela no android

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));
   }
}

Cenário é este quando pela primeira vez abro esta página, ele adiciona dinamicamente linhas no layout da tabela ... mas se após algum tempo os dados no banco de dados mudarem ... quando clico no botão Atualizar, acrescenta os novos dados após os dados antigos no layout da tabela ... tudo o que preciso é a solução para atualizar ou excluir o textview que já existe no layout da tabela ...

thanx ..

questionAnswers(8)

yourAnswerToTheQuestion