int p = 0;
int z = 0;
while (p < plaintext.length) {
while (z < 26) {
buttons[plaintext[p]+z*26].setBackground(Color.GREEN);
z++;
}
z = 0;
p++;
}
我将一列 26 个按钮设置为具有绿色背景,并以 26 x 26 的按钮网格中的变量P作为起点。所以我的问题是如何在每列更改背景颜色之间延迟,以便它首先显示第一列变为绿色并等待几秒钟,然后显示第二列变为绿色并等待几秒钟等等。
SMILET
相关分类