He will not seek pause. But you can always pause immediately after the search if you use SurfaceView and MediaPlayer, because VideoView does not have an onSeekComplete callback.
public void seek() {
mediaplayer.start();
mediaplayer.seekTo(mediaplayer.getCurrentPosition()+1);
}
public void onSeekComplete(MediaPlayer mp) {
mediaplayer.pause();
}
This will search and display something. Unfortunately, you will find that this does not allow you to play in turn.