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 つだけを削除したい場合、どうすればよいですか?