0

我一直在处理一些代码,因此,一旦单击按钮,字符串中的随机单词就会显示在 textView 的位置。但是我忘记了怎么做!这就是我到目前为止所拥有的。

                Button genBnt = (Button) findViewById(R.id.genBnt);
    genBnt.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
    Random randomGenerator = new Random();
    int randomInt = randomGenerator.nextInt(100);

    String wordList[] = new String[30];

    wordList[0] = "Word One";
    wordList[1] = "Word Two";
    wordList[2] = "Word Three";

    int text = randomGenerator.nextInt(30);
    String wordToDisplay = excues[randomInt];       
        }
    });
}

}

所以我已经完成了字符串,但是我忘记了从那里去哪里,我从网上得到了一些代码。

谢谢

4

0 回答 0