I have used the mediaplayer before, and I have never had this problem. Whenever I try to use MediaPlayer.create(), the method gives me null, and I can't play my sounds. Is there anything that I am missing?

public class Game extends Activity
{
    private MediaPlayer mp = null;

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.game);

        mp = MediaPlayer.create(getBaseContext(), R.raw.sound);
    }
}

my sound.mp3 is in my raw folder, which I placed in there by draging my sound to the folder in eclipse. Please help, since I have played sound before, this is really bugging me :(

link|improve this question

Can you try with a different sound file? I think this one may be corrupt. – Reno Oct 25 '11 at 10:54
1  
That was totally the issue! Thanks alot. Answer and I will credit you – Keerigan Oct 25 '11 at 12:30
feedback

1 Answer

up vote 1 down vote accepted

The create() API returns null if it somehow failed.

The reason in this case is due to a corrupt mp3 file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.