0

我开始向 splash.java 添加声音,但我也遇到错误我认为一切都很好,所以你可能会看到它并帮助我,我会非常棒的

我得到的错误是:

Multiple markers at this line
- Syntax error on token ".", class expected after this token
- The method create(Context, Uri) in the type MediaPlayer is not applicable for the arguments     (Splash, 

在线上

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

我的程序是:

package com.sc.uploader;

import android.app.Activity;
import android.content.Intent;
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.Bundle;

public class Splash extends Activity {

@Override
protected void onCreate(Bundle IloveU) {
    // TODO Auto-generated method stub
    super.onCreate(IloveU);
    setContentView(R.layout.splash);
    MediaPlayer start = MediaPlayer.create(Splash.this, R.raw.splashsound); 
    start.start();
    Thread timer = new Thread(){

        public void run(){
            try{
                sleep(5000);

            } catch (InterruptedException e){
                e.printStackTrace();
            }finally {
                Intent openStarting = new       Intent("com.sc.uploader.MAINACTIVITY");
                startActivity(openStarting);
            }

        }

    };
    timer.start();

}



}

如果您能知道错误是什么以及如何解决它,我将非常感激。

4

1 回答 1

0

问题是使用了错误的应用程序,因此对这里尝试id使用的应用程序感到困惑。constructor

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

不合适id。相反,它需要

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

媒体播放器

由于语法似乎是正确的(使用Context, reaourceid),constructor但应用程序试图使用不同的constructor,这让我相信这resourceid是不正确的......以防它可以帮助任何有类似问题的人。

于 2013-10-18T15:51:40.010 回答