AndroidViewController class

Controls an Android view.

Typically created with PlatformViewsService.initAndroidView.

Properties

id int
The unique identifier of the Android view controlled by this controller.
final
textureId int
Returns the texture entry id that the Android view is rendering into. [...]
read-only
hashCode int
The hash code for this object. [...]
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

dispose() Future<void>
Disposes the Android view. [...]
sendMotionEvent(AndroidMotionEvent event) Future<void>
Sends an Android MotionEvent to the view. [...]
setLayoutDirection(TextDirection layoutDirection) Future<void>
Sets the layout direction for the Android view.
setSize(Size size) Future<void>
Sizes the Android View. [...]
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
toString() String
Returns a string representation of this object.
inherited

Operators

operator ==(dynamic other) bool
The equality operator. [...]
inherited

Static Methods

pointerAction(int pointerId, int action) int
Creates a masked Android MotionEvent action value for an indexed pointer.

Constants

kActionCancel → const int
Action code for when a motion event has been cancelled. [...]
3
kActionDown → const int
Action code for when a primary pointer touched the screen. [...]
0
kActionMove → const int
Action code for when the event only includes information about pointer movement. [...]
2
kActionPointerDown → const int
Action code for when a secondary pointer touched the screen. [...]
5
kActionPointerUp → const int
Action code for when a secondary pointer stopped touching the screen. [...]
6
kActionUp → const int
Action code for when a primary pointer stopped touching the screen. [...]
1
kAndroidLayoutDirectionLtr → const int
Android's View.LAYOUT_DIRECTION_LTR value.
0
kAndroidLayoutDirectionRtl → const int
Android's View.LAYOUT_DIRECTION_RTL value.
1