How to play a video file in android?
I am placed video MP4 to my domain space. I have its public URL, Now i want to play it in my android app; but don't know how can I do this. I used following code which is not working. Track controller is moving but I can't see any video on screen. public class MPlayer extends Activity{ public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.playvideo); VideoView videoView = new VideoView(MPlayer.this); videoView.setMediaController(new MediaController(this)); videoView.setVideoURI(Uri.parse("http://www.semanticdevlab.com/abc.mp4"));