public static interface MediaPlayer.OnVideoSizeChangedListener
android.media.MediaPlayer.OnVideoSizeChangedListener |
Interface definition of a callback to be invoked when the video size is first known or updated
Public methods |
|
---|---|
abstract void |
onVideoSizeChanged(MediaPlayer mp, int width, int height) Called to indicate the video size The video size (width and height) could be 0 if there was no video, no display surface was set, or the value was not determined yet. |
void onVideoSizeChanged (MediaPlayer mp, int width, int height)
Called to indicate the video size The video size (width and height) could be 0 if there was no video, no display surface was set, or the value was not determined yet.
Parameters | |
---|---|
mp |
MediaPlayer : the MediaPlayer associated with this callback |
width |
int : the width of the video |
height |
int : the height of the video |