在Android中,如何在不使用findViewByID的情况下显示图像?

时间:2014-02-12 00:26:08

标签: android

我试图让图像出现在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 {

1 个答案:

答案 0 :(得分:4)

代码中的问题是findViewById.

之后的点(。)
ImageView redCounter = (ImageView) findViewById.(R.id.redCounter);

删除它就像那样

ImageView redCounter = (ImageView) findViewById(R.id.redCounter);