我正在尝试以编程方式设置 5(五)个按钮的 id,并每次都将它们随机播放。
洗牌没有问题。
当我使用 2(两种)方法来洗牌并设置 5 个按钮的 id 并设置每个按钮的文本时,我会遇到错误。
我知道这可能会一团糟,因为这是我第一次尝试 for-each 循环。
请帮忙。谢谢你。
Button b1, b2, b3, b4, b5;
Button[] buttons = { b1, b2, b3, b4, b5 };
public void shuffleButtons() {
Integer[] Id = { R.id.bChoice1, R.id.bChoice2, R.id.bChoice3,
R.id.bChoice4, R.id.bChoice5 };
ArrayList<Integer> buttonId = new ArrayList<Integer>(Arrays.asList(Id));
Collections.shuffle(buttonId);
for (int x = 0; x < 5; x++) {
for (Button b : buttons) {
b = (Button) findViewById(buttonId.get(x));
}
}
}
public void setButtonTxt() {
for (Button b : buttons) {
for (int x = 0; x <= buttons.length; x++) {
b.setText(textList.get(x));
}
}
}