I'm creating application for listening radio streams via WiFi & 3G network.
I am using native MediaPlayer. Unfortunately when screen goes black and phone goes into standby mode mediaplayer starts stopping playing the music.
I have added:
mp.setWakeMode(myContext, PowerManager.PARTIAL_WAKE_LOCK);
But there wasn't almost any change (just stop playing and in the next 3 seconds start playing again..) only FULL_WAKE_LOCK and SCREEN_DIM_WAKE_LOCK is working as I expected...
In my device I have set option that prevents wifi to sleep.
I was trying to add my cusom WAKE_LOCK
mp.setWakeMode(this.getBaseContext(), PowerManager.PARTIAL_WAKE_LOCK);
wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "testa");
wl.acquire();
But it didn't work as well. Only FULL_WAKE_LOCK works, but I do not want to drain battery with screen on :(.
I have HTC Desire with Android 2.2. Do you have any ideas how to prevent MediaPlayer stop playing internet radio stream while telephone is in standby mode?