0

LinearLayout作成した3つのボタンごとに新しいものを作成したいと思います。私が欲しいのは、次のような番号を注文することです。

1   2   3
4   5   6
7   8   9

それをするために。LinearLayoutとして新しいを作成する必要がありますHORIZONTAL。しかし、新しいLinearLayoutインループを作成するにはどうすればよいですか?

for (int i=1:i<=9:i++) {
    Button b = new Button(this);
    b.setText(""+i);
    // I need to do something here and put my general layout
}
4

1 に答える 1

2

代わりにGridViewを使用することをお勧めします。バランスの取れた3x3グリッドをより確実に、より少ないコードで作成します。


追加
しかし、明らかにLinearLayoutsに制約されているので、次のことを試してください。

LinearLayout outer = new LinearLayout(this);
outer.setOrientation(LinearLayout.VERTICAL);
LinearLayout inner;
for(int i = 0; i < 9; i++) {
    if(i % 3 == 0) {
        inner = new LinearLayout(this);
        outer.addView(inner);
    }

    // Create your Buttons and add them to inner
}
setContentView(outer);
于 2013-03-04T23:29:25.097 に答える