「膨張した要素」のルートとしてTableLayoutである「stockTableLayout」を設定することの違いは何だろうか
View newStockRow = inflater.inflate(R.layout.stock_qoute_row, stockTableLayout);
そして、newStockRow を変更します。
VS
View newStockRow = inflater.inflate(R.layout.stock_qoute_row, null);
変更してから newStockRow
そして addView 経由で追加します
stockTableLayout.addView(newStockRow);