Most visited

Recently visited

Added in API level 9

SurfaceHolder.Callback2

public static interface SurfaceHolder.Callback2
implements SurfaceHolder.Callback

android.view.SurfaceHolder.Callback2
Known Indirect Subclasses


Additional callbacks that can be received for SurfaceHolder.Callback.

Summary

Public methods

abstract void surfaceRedrawNeeded(SurfaceHolder holder)

Called when the application needs to redraw the content of its surface, after it is resized or for some other reason.

Inherited methods

From interface android.view.SurfaceHolder.Callback

Public methods

surfaceRedrawNeeded

Added in API level 9
void surfaceRedrawNeeded (SurfaceHolder holder)

Called when the application needs to redraw the content of its surface, after it is resized or for some other reason. By not returning from here until the redraw is complete, you can ensure that the user will not see your surface in a bad state (at its new size before it has been correctly drawn that way). This will typically be preceeded by a call to surfaceChanged(SurfaceHolder, int, int, int).

Parameters
holder SurfaceHolder: The SurfaceHolder whose surface has changed.

Hooray!