I am new to android development and I am programming a game. My game has cutsceens that play before each level starts, cutsceens which are done through videoview. My problem
In OnPause you can get the current position .
length=mVideoView.getCurrentPosition();
and length value use in OnResume ().
mVideoView.seekTo(length); mVideoView.start()
working fine .