Skip to content Skip to sidebar Skip to footer

Unable To Play Sound Using Android Mediaplayer In Dialog?

I'm trying to play sound in a dialog. But somehow, it doesnt work. I'm not sure whether it's because its in a dialog or so. File file = new File(Environment.getExternalStorageDirec

Solution 1:

Just use,

privateMediaPlayermp=newMediaPlayer();
mp.reset();
mp.setDataSource(soundUri);
mp.prepare();
mp.start();

And let me know what happen..

Also look at this example MusicDroid - Audio Player Part I

Post a Comment for "Unable To Play Sound Using Android Mediaplayer In Dialog?"