Android用の三目並べゲームを開発しています。ユーザーはコンピューターと対戦します。私はこのゲームでほとんど終わりましたが、この最後の問題で立ち往生しています。私はたくさん試しましたが、空のランダムな正方形を選択するための適切なランダムな方法を見つけることができませんでした. これは、9 つのボタンを宣言した方法です。
btn00 = (Button) findViewById(R.id.button);
btn01 = (Button) findViewById(R.id.button2);
btn01 = (Button) findViewById(R.id.button3);
btn10 = (Button) findViewById(R.id.button4);
btn11 = (Button) findViewById(R.id.button5);
btn12 = (Button) findViewById(R.id.button6);
btn20 = (Button) findViewById(R.id.button7);
btn21 = (Button) findViewById(R.id.button8);
btn22 = (Button) findViewById(R.id.button9);
私を助けてください。前もって感謝します!