01.
else
if
(opened ==
2
)
02.
{
03.
if
( firstClick != position ) ---> เพิ่มตรงนี้ครับ
04.
{
05.
secondClick = position;
06.
imageView.setImageResource(mThumbIds[position]);
07.
imageView.setClickable(
false
);
08.
if
(mThumbIds[firstClick].compareTo(mThumbIds[secondClick]) ==
0
)
09.
{
10.
Toast.makeText(GridView.
this
,
"That's Great!"
,
11.
Toast.LENGTH_SHORT).show();
12.
handler.postDelayed(removeImage,
800
);
13.
}
14.
else
15.
{
16.
handler.postDelayed(cardBack,
600
);
17.
}
18.
}
19.
}