TextureView.ISurfaceTextureListener.OnSurfaceTextureSizeChanged Method

Definition

Invoked when the SurfaceTexture's buffers size changed.

[Android.Runtime.Register("onSurfaceTextureSizeChanged", "(Landroid/graphics/SurfaceTexture;II)V", "GetOnSurfaceTextureSizeChanged_Landroid_graphics_SurfaceTexture_IIHandler:Android.Views.TextureView/ISurfaceTextureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void OnSurfaceTextureSizeChanged (Android.Graphics.SurfaceTexture surface, int width, int height);
[<Android.Runtime.Register("onSurfaceTextureSizeChanged", "(Landroid/graphics/SurfaceTexture;II)V", "GetOnSurfaceTextureSizeChanged_Landroid_graphics_SurfaceTexture_IIHandler:Android.Views.TextureView/ISurfaceTextureListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member OnSurfaceTextureSizeChanged : Android.Graphics.SurfaceTexture * int * int -> unit

Parameters

surface
SurfaceTexture

The surface returned by android.view.TextureView#getSurfaceTexture()

width
Int32

The new width of the surface

height
Int32

The new height of the surface

Attributes

Remarks

Invoked when the SurfaceTexture's buffers size changed.

Java documentation for android.view.TextureView.SurfaceTextureListener.onSurfaceTextureSizeChanged(android.graphics.SurfaceTexture, int, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to