こんにちは、私はこのようなものを持っています
TableLayout tblGrid = new TableLayout(getBaseContext());
for(int i = 0; i < 10; i++) {
EditText edtArticulo = new EditText(getBaseContext());
EditText edtCantidad = new EditText(getBaseContext());
EditText edtPrecio = new EditText(getBaseContext());
EditText edtSubtotal = new EditText(getBaseContext());
CheckBox chbSeleccion = new CheckBox(getBaseContext());
TableRow tbrRenglon = = new TableRow(getBaseContext());
tbrRenglon.addView(chbSeleccion, 0);
tbrRenglon.addView(edtArticulo, 1);
tbrRenglon.addView(edtCantidad, 2);
tbrRenglon.addView(edtPrecio, 3);
tbrRenglon.addView(edtSubtotal, 4);
}
tblGrid.addView(tbrRenglon);
私の問題は、テーブル行のグループで選択したチェックボックスが見つからないことです
助けが必要です