以编程方式添加未知数量的按钮

时间:2013-03-27 18:15:06

标签: java android eclipse

我写了一个简单的应用程序,我想以编程方式添加一些按钮。问题是它不确定需要添加多少个按钮。我试图将“Button button = new Button”放入for循环中,因为我认为它只会创建一个局部变量。我猜这是我的错;)

这是我的代码:

public class MainActivity extends Activity {

LinearLayout auswahl;

String element [] = new String [10]; //This is just an example, it would take many pages to show how this array gets created.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    auswahl = (LinearLayout)findViewById(R.id.LinearLayout2);

    element [1] = "A";
    element [2] = "B";
    element [3] = "C";
    element [4] = "D";
    element [5] = "E";
    element [6] = "F";
    element [7] = "G";
    element [8] = "H";
    element [9] = "I";
    element [0] = "J";

    int anzahl = element.length;

    for (int i = 0; i <= anzahl; i++){
        schreibeButtons(i, element[i]);
    }

}


public void schreibeButtons(int i, String string){

    Button button = new Button(this);

    button.setText(sortiment);
    button.setWidth(auswahl.getWidth());
    button.setHeight(40);
    button.setId(i*100);

    auswahl.addView(button);
} }

对于我想要达到的目标有什么问题吗?如何达到我的目标?

1 个答案:

答案 0 :(得分:1)

错误:

int anzahl = element.length;

大小为n的数组包含0 to n-1,

中的元素

prasperK已经指出了这一点。

您正在为LinearLayout auswahl添加每个按钮。

您只能从中访问按钮

示例:按钮数 - auswahl.getChildCount(); 你可以像这样访问每个按钮

获取按钮1

Button button1=auswahl.getChildAt(0);

或仅使用ID

Button button1=(Button)auswahl.findViewById(101);