0

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);

私を助けてください。前もって感謝します!

4

3 に答える 3

1

ボタンをリストに入れ、乱数を生成し、リストから選択した番号のボタンを取得します。

于 2013-10-15T10:48:49.187 に答える