0
啓動畫面運行時有一種播放音樂的方法嗎? 這是我的啓動畫面代碼:啓動畫面啓動時播放音頻
// Splash screen timer
private static int SPLASH_TIME_OUT= 2000;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
// This method will be executed once the timer is over
// Start main activity
Intent i = new Intent(SplashScreen.this, MyActivity.class);
startActivity(i);
// close activity
finish();
}
}, SPLASH_TIME_OUT);
}
我創建了RES /生,把我的歌曲的原始文件夾,我怎麼能玩時,運行閃屏?
不行,死機,我在清單中如何設置? – spyker10 2014-10-11 22:35:25
http://www.tutorialspoint.com/android/android_mediaplayer.htm – 2014-10-11 22:36:12