Added in API level 3

OnVideoSizeChangedListener

interface OnVideoSizeChangedListener
android.media.MediaPlayer.OnVideoSizeChangedListener

Interface definition of a callback to be invoked when the video size is first known or updated

Summary

Public methods
abstract Unit
onVideoSizeChanged(mp: MediaPlayer!, width: Int, height: Int)

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.

Public methods

onVideoSizeChanged

Added in API level 3
abstract fun onVideoSizeChanged(
    mp: MediaPlayer!,
    width: Int,
    height: Int
): Unit

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