I am trying to play the audio files using media player. It will stop after screen lock. It is annoying can anyone suggest, how to handle this?? I want to play the music even screen goes off.
Thanks in advance.
I am trying to play the audio files using media player. It will stop after screen lock. It is annoying can anyone suggest, how to handle this?? I want to play the music even screen goes off.
Thanks in advance.
I think you can use Media Playback
public class MyService extends Service implements MediaPlayer.OnPreparedListener {
private static final String ACTION_PLAY = "com.example.action.PLAY";
MediaPlayer mMediaPlayer = null;
public int onStartCommand(Intent intent, int flags, int startId) {
...
if (intent.getAction().equals(ACTION_PLAY)) {
mMediaPlayer = ... // initialize it here
mMediaPlayer.setOnPreparedListener(this);
mMediaPlayer.prepareAsync(); // prepare async to not block main thread
}
}
/** Called when MediaPlayer is ready */
public void onPrepared(MediaPlayer player) {
player.start();
}
}