我有这个非常基本的应用程序,它有 1 个按钮和 X 个语音文件。语音文件位于 raw/ 下的 res/ 文件夹中。
点击按钮后,我希望应用程序播放随机语音文件。这是我到目前为止所拥有的:
Button playNasr = (Button) findViewById(R.id.button1);
playNasr.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
rand = randomGenerator.nextInt(6) + 1;
// here's where I'm at a loss, I want to be able to concatenate
// the random number to the "voice00" string to form
// "voice001/2/3/etc..." in correspondence to how my voice files
// are named.
mp = MediaPlayer.create(Main.this, R.raw.voice00) + rand;
mp.start();
}
});
任何帮助表示赞赏,在此先感谢