我正在尝试以动态方式创建Button
个对象。我不确定这是否可行。以下代码已经使用过(并且失败了):
public class GraphManager{
private Vector<Button> machineButtons = null;
public Vector<Button> getMachineButtons(){
return machineButtons;
}
public void setMachineButtons(int machines, Context context){
for(int i = 0; i < machines; i++){
Button machineButton = new Button(context);
machineButtons.add(machineButton);
}
}
public Button getMachineButton(int index){
return machineButtons.elementAt(index);
}
}
我的问题有解决方法吗?