我有一个游戏,我使用 12 个没有文字的按钮来显示生命。每次他们失去生命时,都会运行此代码
public void guessesRemainingDisplay(int numberOfGuesses) {
int guessesRemaining;
guessesRemaining = maximumGuesses + 1 - numberOfGuesses;
switch(guessesRemaining) {
case 1:
findViewById(R.id.Guess1).setBackgroundColor(color.transparent);
break;
case 2:
findViewById(R.id.Guess2).setBackgroundColor(color.transparent);
break;
case 3:
findViewById(R.id.Guess3).setBackgroundColor(color.transparent);
break;
case 4:
findViewById(R.id.Guess4).setBackgroundColor(color.transparent);
break;
case 5:
findViewById(R.id.Guess5).setBackgroundColor(color.transparent);
break;
case 6:
findViewById(R.id.Guess6).setBackgroundColor(color.transparent);
break;
case 7:
findViewById(R.id.Guess7).setBackgroundColor(color.transparent);
break;
case 8:
findViewById(R.id.Guess8).setBackgroundColor(color.transparent);
break;
case 9:
findViewById(R.id.Guess9).setBackgroundColor(color.transparent);
break;
case 10:
findViewById(R.id.Guess10).setBackgroundColor(color.transparent);
break;
case 11:
findViewById(R.id.Guess11).setBackgroundColor(color.transparent);
break;
case 12:
findViewById(R.id.Guess12).setBackgroundColor(color.transparent);
break;
}
}
最右边的按钮消失了(它们在一条线上,左边的 1 右边的 12)。
但是,当我开始一个新游戏时,或者当活动第一次打开时,会运行此代码
findViewById(R.id.Guess1).setBackgroundColor(color.X);
对每个 id 重复。X 实际上是任何颜色(我已经尝试过很多不同的颜色)。出于某种原因,如果此代码曾经运行过,该按钮就会消失。为什么?如果它没有运行,12个按钮就会出现,但是每当我开始一个新游戏时,显然由于失去生命而消失的按钮不会回来。