I'm currently using VideoView to play video from URL (Streaming..), when i press home the video stops..
is there a way to make it keep playing?
Whats the best way to make a video keep running in background?
Thanks in advance, Amitos80
You should use MediaPlayer instead of VideoView.
m = new MediaPlayer();
m.setDatasource(url);
m.prepare();
m.start();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With