アプリのスプラッシュ スクリーンに 5 秒のサウンド mp3 を 1 つ追加しましたが、アプリの読み込み中に再生が変動します。スムーズに再生するにはどうすればよいですか??
public class Splash extends Activity{
MediaPlayer ourSong;
@Override
protected void onCreate(Bundle TravisLoveBacon) {
// TODO Auto-generated method stub
super.onCreate(TravisLoveBacon);
setContentView(R.layout.splash);
ourSong = MediaPlayer.create(Splash.this, R.raw.onkar);
ourSong.start();
Thread timer = new Thread(){
public void run(){
try{
sleep(4000);
} catch (InterruptedException e){
e.printStackTrace();
}finally{
Intent openStartingPoint = new Intent("com.sport.sport.MAINLAUNCHER2");
startActivity(openStartingPoint);
}
}
};
timer.start();
}
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
ourSong.release();
finish();
}
}