For your VideoView, prpoblem has a setVideoPath method. You need to use setVideoURI instead to indicate the streaming source:
VideoView mVideoView = (VideoView) findViewById(R.id.vdoTest); mVideoView.setMediaController(new MediaController(this)); String viewSource ="http://view.vzaar.com/923037/video"; mVideoView.setVideoURI(Uri.parse(viewSource));
This should work if the video is encoded correctly: (AAC + H.264, basic)
source share