This is my code.. mp3 format file plays without any error..but wav format brings MediaPlayer error(1,-1)

try {
        MediaPlayer player = new MediaPlayer();
        player.setAudioStreamType(AudioManager.STREAM_MUSIC);
                 player.setDataSource("h*.wav"
                );
        player.prepare();
                    player.start();} catch (Exception e) {
        // TODO: handle exception
    }
link|improve this question

43% accept rate
1  
Developer questions are off topic here, suggested moving to stackoverflow. – onik Jan 13 at 7:32
You might want to format your code a little more readably. – Matthew Read Jan 13 at 16:51
feedback

migrated from android.stackexchange.com Jan 13 at 16:49

This question came from our site for enthusiasts and power users of the Android operating system.

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.