I am having an Activity in which there is
VideoView -- Streams a video from a webserver.
Button -- Takes the user to the next activit
In onPause() function, instead of
@Override protected void onPause() { // TODO Auto-generated method stub super.onPause(); videoView.suspend(); }
try
@Override protected void onPause() { // TODO Auto-generated method stub super.onPause(); videoView.pause(); }