I am trying to stream video in video view over HTTP. and my code is as shown below. I am getting a white space between the video. I want to play video in whole screen ... can anyone suggest what to do?
MediaController mc = new MediaController(VideoViewActivity.this);
mc.setAnchorView(mVideoView);
mc.setMediaPlayer(mVideoView);
Uri video = Uri.parse(path);
mVideoView.requestFocus();
mVideoView.setMediaController(mc);
mVideoView.setVideoURI(video);
mVideoView.start();
This is how i have coded to play the video. Below Image shows while space.
