我想要一个按钮,当您单击该按钮时,它会随机显示一个短语。 我做了一点研究(我对java的知识有限)我相信我必须使用一个数组,它会显示一个随机的文本字符串。 谁能告诉我我必须使用哪些代码?
答案 0 :(得分:1)
Android API示例TextToSpeechActivity完全符合您的要求。
以下是相关的代码片段:
private static final Random RANDOM = new Random();
private static final String[] HELLOS = {
"Hello",
"Salutations",
"Greetings",
"Howdy",
"What's crack-a-lackin?",
"That explains the stench!"
};
private void sayHello() {
// Select a random hello.
int helloLength = HELLOS.length;
String hello = HELLOS[RANDOM.nextInt(helloLength)];
}