私は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();
}
});
助けていただければ幸いです、よろしくお願いします