to top
Android APIs
Added in API level 3
public static interface

MediaPlayer.OnVideoSizeChangedListener

android.media.MediaPlayer.OnVideoSizeChangedListener

Class Overview

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

Summary

Public Methods

? Examples
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.

Public Methods

public abstract void onVideoSizeChanged (MediaPlayer mp, int width, int height)

Added in API level 3

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 the MediaPlayer associated with this callback
width the width of the video
height the height of the video
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.