Interface PlatformViewsChannel2.PlatformViewsHandler
- Enclosing class:
- PlatformViewsChannel2
public static interface PlatformViewsChannel2.PlatformViewsHandler
Handler that receives platform view messages sent from Flutter to Android through a given
PlatformViewsChannel
.
To register a PlatformViewsHandler
with a PlatformViewsChannel2
, see PlatformViewsChannel2.setPlatformViewsHandler(PlatformViewsHandler)
.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clearFocus
(int viewId) Clears the focus from the platform view with a give id if it is currently focused.void
The Flutter application would like to display a new AndroidView
, i.e., platform view.void
dispose
(int viewId) The Flutter application would like to dispose of an existing AndroidView
.boolean
Whether the SurfaceControl swapchain is enabled.void
The user touched a platform view within Flutter.void
setDirection
(int viewId, int direction) The Flutter application would like to change the layout direction of an existing AndroidView
, i.e., platform view.
-
Method Details
-
createPlatformView
The Flutter application would like to display a new AndroidView
, i.e., platform view. -
dispose
void dispose(int viewId) The Flutter application would like to dispose of an existing AndroidView
. -
onTouch
The user touched a platform view within Flutter.Touch data is reported in
touch
. -
setDirection
void setDirection(int viewId, int direction) The Flutter application would like to change the layout direction of an existing AndroidView
, i.e., platform view. -
clearFocus
void clearFocus(int viewId) Clears the focus from the platform view with a give id if it is currently focused. -
isSurfaceControlEnabled
boolean isSurfaceControlEnabled()Whether the SurfaceControl swapchain is enabled.
-