I am trying to play a video file in Android activity but not able to do this
I am using the following code.
try
{
VideoView video = (VideoView)findViewById(R.id.videoView);
String url="http://demofouracelimited.com/modigynw/
videos/VID_20140730_144814_1407834444.3gp"
String url1="http://download.itcuties.com/teaser/itcuties-teaser-480.mp4"
video.setVideoPath(url); // not playing
// video.setVideoPath(url1); playing
video.start();
}
catch(Exception ex)
{
ex.printStackTrace();
}
can you help me to fix problem in this task