0

我想为创建的LinearLayout每三个按钮创建一个新按钮。我想要的是订购号码,如下所示:

1   2   3
4   5   6
7   8   9

要做到这一点。我需要创建一个新LinearLayout的 as 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 回答