-
public interface BaseVideoView.OnVideoViewSizeChangedListener
Interface definition for a callback to be invoked when theBaseVideoView's size changes.
-
-
Method Summary
Modifier and Type Method Description abstract void
onVideoViewSizeChange(int w, int h, int oldw, int oldh)
Called when the BaseVideoView's size changes. -
-
Method Detail
-
onVideoViewSizeChange
abstract void onVideoViewSizeChange(int w, int h, int oldw, int oldh)
Called when the BaseVideoView's size changes.
- Parameters:
w
- Current width of this view.h
- Current height of this view.oldw
- Old width of this view.oldh
- Old height of this view.
-
-
-
-