Android 开发 运行 MainActivity 上的基调

Android development with running a tone on MainActivity

我正在编写代码以在启动我的应用程序时播放小音调。 你能解释一下我在这里写下的代码的含义吗?

Log.i("MY IIIT APP","MY SPLASH STATED");

mp=MediaPlayer.create(this, R.drawable.tone);
mp.start();
Thread t=new Thread()
{
    public void run() {
        try{
          sleep(3000);
          Intent i=
                  new Intent(MainActivity.this,JumpedTo.class);
          startActivity(i);
        }
        catch(Exception e)
        {

        }

    }
};
t.start();
}

前两行很容易加载然后播放声音。 然后在线程中等待 3 秒,然后启动另一个 activity.

逐行分析:

Log.i("MY IIIT APP","MY SPLASH STARTED");   //It will give info in Logs as "MY SPLASH STARTED"

mp=MediaPlayer.create(this, R.drawable.tone); // Defines a MediaPlayer with audio(media) "tone"
mp.start(); //Starts playing mp in android framework
Thread t=new Thread() // Defines and initializes a new thread
{
    public void run() {
        try{
          sleep(3000); //Creates delay of 3000 milliseconds or 3 seconds
          Intent i=
                  new Intent(MainActivity.this,JumpedTo.class); //Defines an intent to switch from MainActivity to JumpedTo Activity
          startActivity(i); //Starts the intent
        }
        catch(Exception e)
        {

        }

    }
};
t.start(); // Starts the thread after definition and initialization
}