0

tablelayout に行を追加する場合、コードは次のように実行できます。

   private void ToDisplayTagGUI(String Slot, int index)
      LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
      View newTagView = inflater.inflate(R.layout.new_tag_view, null);
      SlotTableLayout.addView(newTagView, index);

tablelayout のデータ全体を削除する場合、コードは次のようになります。

      SlotTableLayout.removeAllViews();

tablelayout から行の 1 つだけを削除したい場合、どうすればよいですか?

4

1 に答える 1

1

テーブルレイアウトから特定の行を削除するには、次を使用できます。

table.removeView(rowindex);

于 2012-09-21T17:54:40.453 に答える