-1

テーブルレイアウトを使用してプログラムでボタンの行をインスタンス化しようとしています

    public class MainActivity extends Activity {
/** Called when the activity is first created. */
private final int gridSize = 3;
private TableRow rowArr[] = new TableRow[gridSize];
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);


    //Create the layout
    TableLayout MainLayout = new TableLayout(this);
    MainLayout.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT, TableRow.LayoutParams.MATCH_PARENT));
    //MainLayout.setStretchAllColumns(true);

    for ( int i =0 ; i < gridSize ; i++){
        for(int j = 0; j < gridSize ; j++){

            Button button = new Button(this);
            button.setText(Integer.toString(i)+","+Integer.toString(j));
            rowArr[i].addView(button);

        }
        MainLayout.addView(rowArr[i]);
    }

//Set the view
    setContentView(MainLayout);
}

ただし、この行は nullpointerexception をスローするようです

     rowArr[i].addView(button);

私は何を間違っていますか?

4

2 に答える 2

2

あなたTableRownull それをインスタンス化していないのと同じです。このようにインスタンス化してみてください rowArr[i]=new TableRow();

for ( int i =0 ; i < gridSize ; i++){

    rowArr[i]=new TableRow();
        for(int j = 0; j < gridSize ; j++){

            Button button = new Button(this);
            button.setText(Integer.toString(i)+","+Integer.toString(j));
            rowArr[i].addView(button);

        }
        MainLayout.addView(rowArr[i]);
    }
于 2013-05-08T10:16:18.727 に答える
2

rowArr 配列を初期化しましたが、その個々の TableRow 要素は初期化していません。したがって、rowArr[i] は null になります。for ループに、次の行を入れます:-

rowArr[i] = new TableRow(this);
于 2013-05-08T10:16:31.117 に答える