创建特定数量的按钮

时间:2014-02-24 15:29:07

标签: java android class button layout

我想在java类中在Android中创建一个布局。我需要用户引入1到20之间的数字,这会创建用户选择的数量。

我知道这在Java中是可行的,但我不知道这在Android中是否可行,任何想法?Thnaks !!

1 个答案:

答案 0 :(得分:1)

LinearLayout buttonsLayout = (LinearLayout)findViewById(R.id.buttons_layout);
    LayoutParams layoutParams = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
    for(int i=0;i<numberOfButtons;i++){
        Button button = new Button(this);
        button.setText("Buttin "+(i+1));
        button.set....other attributes
        buttonsLayout.addView(button, layoutParams);
    }