2

美好的一天,我一直在为我的 android 程序做一些编码,我尝试在这里用这段代码播放音乐 android 最低版本是 2.2,最高版本是 4.2.2 也使用 eclipse 来做到这一点,设备模拟器是 nexus one

这在全球

    MediaPlayer Sound;

这是在 setContentView 下

    Sound = MediaPlayer.create(Splash.this, R.raw.kalimba);
    Sound.start();

这是整个代码

import android.app.Activity;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.Bundle;
public class Splash extends Activity {
MediaPlayer Sound;
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.splash);
    Sound = MediaPlayer.create(Splash.this, R.raw.kalimba);
    Sound.start();
    Thread timer = new Thread(){
        public void run(){
            try{
                sleep(5000);                    
            } catch(InterruptedException e){
                e.printStackTrace();
            }finally{
                Intent openStartingPoints = new              Intent("com.mysampleapp.simplybel.MainActivity");
                startActivity(openStartingPoints);
            }//this is the end for the finally
        }//this is the end for the run
    };//this is the end for the thread timer
    timer.start();

}//this is the end for the oncreate

@Override
protected void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
    Sound.release();
    finish();
}


}

有人可以帮我做这个吗?

4

1 回答 1

0

它可能来自您的意图。你到底想用这个意图做什么?

显式意图的正确语法应该类似于本意图教程。例如, Intent openStartingPoints=new Intent(context,MainActivity.class);上下文必须像Context context;全局变量声明一样在线程外部,并context=this;在 onCreate() 内部对其进行实例化,以将其设置为当前活动的上下文。

作为另一个建议,您应该始终以驼峰式命名变量名,因此第一个字母应该是小写的。

让我知道这是否会改变任何事情。除此之外,我看不到提供的代码有任何问题。

于 2013-07-25T10:12:43.807 回答