0

こんにちは、私はこのようなものを持っています

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

私の問題は、テーブル行のグループで選択したチェックボックスが見つからないことです

助けが必要です

4

1 に答える 1

1

ループ外の配列内の各チェックボックスへの参照を保持します。次に、配列をループして、どれがチェックされているかを確認します

于 2012-05-11T15:10:20.660 に答える