我想为创建的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
}