I'm using the following code to play an Mp3 File, the problem I have is that when I try to play it thru the earpiece I can't hear anything or just small parts of the file, this only in android 2.3.4. Hope anyone can help me with this.

import java.io.IOException;
import android.app.Activity;
import android.content.Context;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.media.MediaRecorder;
import android.os.Bundle;
import android.os.PowerManager;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;


public class EarpieceTest extends Activity implements OnClickListener {

  /** Close Button */
  private Button closeButton;

  /** Stop Button */
  private Button stopButton;

  /** Play Button */
  private Button playButton;

  /** Media Recorder */
  //private MediaRecorder mRecorder;

  /** Media Player */
  private MediaPlayer mPlayer;

  /** Audio Manager */
  private AudioManager aManager;

  /** Constructor */
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    mPlayer = new MediaPlayer();
    mPlayer.setWakeMode(getApplicationContext(), PowerManager.PARTIAL_WAKE_LOCK);

    //Set buttons
    closeButton = (Button) findViewById(R.id.close);
    stopButton = (Button) findViewById(R.id.stop);
    playButton = (Button) findViewById(R.id.play);
    aManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);

    //Add Listeners
    stopButton.setOnClickListener(this);
    closeButton.setOnClickListener(this);
    playButton.setOnClickListener(this);
  }

  /**
   * Handle Button Click
   */
  public void onClick(View view) {
    if(view == findViewById(R.id.close) ) {
      StopSound();
      finish();
    } else if(view == findViewById(R.id.stop)) {
      StopSound();
    } else if(view == findViewById(R.id.play)) {
      PlaySound("/sdcard/7tone test - 60.mp3");
    }
  }

  /**
   * Play recording
   */
  public void PlaySound(final String file) {

    //aManager.setMode(AudioManager.MODE_IN_CALL);
    aManager.setSpeakerphoneOn(false);
    aManager.setMicrophoneMute(true);
    int maxVolume = aManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC) - 4;
    aManager.setStreamVolume(AudioManager.STREAM_MUSIC, maxVolume, AudioManager.FLAG_REMOVE_SOUND_AND_VIBRATE);
    aManager.requestAudioFocus(null, AudioManager.STREAM_VOICE_CALL, AudioManager.AUDIOFOCUS_GAIN_TRANSIENT);
    try {
      mPlayer.setDataSource(file);
      mPlayer.prepare();
      mPlayer.start();
      // Setup listener so next song starts automatically
      Toast.makeText(this, "Playing " + file + " @" + (maxVolume) , Toast.LENGTH_LONG).show();
    } catch (IllegalArgumentException e) {
      Toast.makeText(this, "Error Illegal Arg", Toast.LENGTH_LONG).show();
      e.printStackTrace();
    } catch (IllegalStateException e) {
      Toast.makeText(this, "Error Illegal State", Toast.LENGTH_LONG).show();
      e.printStackTrace();
    } catch (IOException e) {
      Toast.makeText(this, "File not found", Toast.LENGTH_LONG).show();
    }

  }

  public void StopSound() {
    mPlayer.start();
    mPlayer.stop();
    mPlayer.release();
  }

}
link|improve this question
feedback

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.