An interface to listen for state changes in a view associated with Kanzi. More...
Public Member Functions | |
default void | onAttachedToWindow (View view, Domain domain) |
Called when the view is attached to a window. More... | |
default void | onDetachedFromWindow (View view, Domain domain) |
Called when the view is detached from a window. More... | |
default void | onStartupPrefabLoaded (View view, Domain domain) |
Called when the startup prefab is loaded and content is accessible. More... | |
default void | onSurfaceChanged (View view, Domain domain) |
This is called immediately after any structural changes (format or size) have been made to the surface. More... | |
default void | onSurfaceCreated (View view, Domain domain) |
Called when the view has an output surface. More... | |
default void | onSurfaceDestroyed (View view, Domain domain) |
This is called immediately before a surface is being destroyed. More... | |
An interface to listen for state changes in a view associated with Kanzi.
default void onAttachedToWindow | ( | View | view, |
Domain | domain | ||
) |
Called when the view is attached to a window.
view | View that was attached. |
domain | Domain associated with the view. |
default void onDetachedFromWindow | ( | View | view, |
Domain | domain | ||
) |
Called when the view is detached from a window.
view | View that was detached. |
domain | Domain associated with the view. |
default void onStartupPrefabLoaded | ( | View | view, |
Domain | domain | ||
) |
Called when the startup prefab is loaded and content is accessible.
view | View that owns the loaded prefab. |
domain | Domain associated with the view. |
default void onSurfaceChanged | ( | View | view, |
Domain | domain | ||
) |
This is called immediately after any structural changes (format or size) have been made to the surface.
view | View that owns the changed surface. |
domain | Domain associated with the view. |
default void onSurfaceCreated | ( | View | view, |
Domain | domain | ||
) |
Called when the view has an output surface.
view | View that owns the created surface. |
domain | Domain associated with the view. |
default void onSurfaceDestroyed | ( | View | view, |
Domain | domain | ||
) |
This is called immediately before a surface is being destroyed.
view | View that owns the destroyed surface. |
domain | Domain associated with the view. |