How to change full screen mode during play video
Now I am make video player. and try to make video screen size change.
I find
MediaPlayer.OnVideoSizeChangedListener mSizeCha开发者_如何学CngedListener =
new MediaPlayer.OnVideoSizeChangedListener() {
but this is callback function. not direct call function.
How to change video screen size?
take a look at this demo on the android site, look at the method startVideoPlayback
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/media/MediaPlayerDemo_Video.html
You can change the screen size by calling SetFixedSize() on your SurfaceHolder: http://developer.android.com/reference/android/view/SurfaceHolder.html
精彩评论