in my app i am playing video and its play. if i run in HTC device it shows with previous, play/pause, next and video extractor. but if i run Motorola device it shows previous, play/pause, next only, no extractor is shown. in HTC i enlarge the video by extractor but in Motorola i could not enlarge the video. how can i set extractor facility for all devices. if i touch video extractor button to be shown and after click extractor video to be enlarged and extractor to be hide. please help me.
i create my project with Android-3.0 and API Level is 11.
my code is:
VideoView myVideoView = (VideoView)findViewById(R.id.myvideoview);
myVideoView.setVideoURI(Uri.parse(SrcPath));
myVideoView.setMediaController(new MediaController(this));
myVideoView.requestFocus();
myVideoView.start();