The following are the problems :
The seeker doesn't move as the video goes forward
The seeker doesn't seek to the desired position instead, the video starts all over again.
The forward and backward buttons don't work.
Here is my code:
VideoView videoView = (VideoView)findViewById(R.id.videoView);
videoView.setVideoPath("android.resource://"+getPackageName()+"/"+R.raw.video);
MediaController mediaController = new MediaController(this);
mediaController.setAnchorView(videoView);
videoView.setMediaController(mediaController);
videoView.start();