我试图让图像出现在if语句中但是它不喜欢findviewbyId所以有没有其他方式来显示图像 - 错误说不能解析为变量
public boolean play(int column){
for (int r = 0; r <= 5;r++){
if (getState(column, r) == State.BLANK){
if (player1Turn == true){
count[column][r] = State.RED;
//image
ImageView redCounter = (ImageView) findViewById.(R.id.redCounter);
//end
}else {
答案 0 :(得分:4)
代码中的问题是findViewById.
ImageView redCounter = (ImageView) findViewById.(R.id.redCounter);
删除它就像那样
ImageView redCounter = (ImageView) findViewById(R.id.redCounter);