0

抱歉,如果这是一个奇怪的问题,我真的不明白如何让它工作。基本上,我想要一种行为,以便当您单击我的一个 gridview 项目时,它会突出显示红色,这工作正常,但我需要它一次只有 2 个来自 click 方法的突出显示的字母。

在这个方法之外是

public void onItemClick(AdapterView<?>parent, View v, int position, long id)
{
    //selection.setText(Words[position]);
}

这是在我被解雇的方法中

public void onItemClick(AdapterView<?> arg0,View arg1, int arg2, long arg3)
{
    Toast.makeText(getApplicationContext(), ""+arg2,Toast.LENGTH_SHORT).show(); 
    ((TextView) arg1).setTextColor(getResources().getColor(android.R.color.holo_red_light));
                ((TextView) arg1).setTextSize(9);
    counter++;
    if(counter == 2)
    {
        //this needs to select everything in the gridview and set to white
    }
}

有谁知道我将如何去做(如果可能的话)

4

1 回答 1

1

对其进行排序。

                if(counter == 3)
                {
                    gridView.setAdapter(adapter);
                    // do the check if its a word or not

                    counter = 0;

            }

奇迹般有效

于 2013-04-17T20:09:18.030 回答