Class FlutterJNI
Flutter's engine is built with C/C++. The Android Flutter embedding is responsible for coordinating Android OS events and app user interactions with the C/C++ engine. Such coordination requires messaging from an Android app in Java code to the C/C++ engine code. This communication requires a JNI (Java Native Interface) API to cross the Java/native boundary.
The entirety of Flutter's JNI API is codified in FlutterJNI. There are multiple
reasons that all such calls are centralized in one class. First, JNI calls are inherently static
and contain no Java implementation, therefore there is little reason to associate calls with
different classes. Second, every JNI call must be registered in C/C++ code and this registration
becomes more complicated with every additional Java class that contains JNI calls. Third, most
Android developers are not familiar with native development or JNI intricacies, therefore it is
in the interest of future maintenance to reduce the API surface that includes JNI declarations.
Thus, all Flutter JNI calls are centralized in FlutterJNI.
Despite the fact that individual JNI calls are inherently static, there is state that exists
within FlutterJNI. Most calls within FlutterJNI correspond to a specific
"platform view", of which there may be many. Therefore, each FlutterJNI instance holds
onto a "native platform view ID" after attachToNative(), which is shared with the native
C/C++ engine code. That ID is passed to every platform-view-specific native method. ID management
is handled within FlutterJNI so that developers don't have to hold onto that ID.
To connect part of an Android app to Flutter's C/C++ engine, instantiate a FlutterJNI
and then attach it to the native side:
// Instantiate FlutterJNI and attach to the native side.
FlutterJNI flutterJNI = new FlutterJNI();
flutterJNI.attachToNative();
// Use FlutterJNI as desired. flutterJNI.dispatchPointerDataPacket(...);
// Destroy the connection to the native side and cleanup.
flutterJNI.detachFromNativeAndReleaseResources();
To receive callbacks for certain events that occur on the native side, register listeners:
addEngineLifecycleListener(FlutterEngine.EngineLifecycleListener)addIsDisplayingFlutterUiListener(FlutterUiDisplayListener)
setPlatformMessageHandler(PlatformMessageHandler)
To invoke a native method that is not associated with a platform view, invoke it statically:
bool enabled = FlutterJNI.getIsSoftwareRenderingEnabled();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceDelegate responsible for creating and updating Android-side caches of Flutter's semantics tree and custom accessibility actions.static interfacestatic classA factory for creatingFlutterJNIinstances. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddEngineLifecycleListener(FlutterEngine.EngineLifecycleListener engineLifecycleListener) Adds the givenengineLifecycleListenerto be notified of Flutter engine lifecycle events, e.g.,FlutterEngine.EngineLifecycleListener.onPreEngineRestart().voidAdds aFlutterUiDisplayListener, which receives a callback when Flutter's engine notifiesFlutterJNIthat Flutter is painting pixels to theSurfacethat was provided to Flutter.voidvoidAttaches thisFlutterJNIinstance to Flutter's native engine, which allows for communication between Android code and Flutter's platform agnostic engine.voidcleanupMessageData(long messageData) Destroys the resources provided sent to `handlePlatformMessage`.String[]computePlatformResolvedLocale(String[] strings) Invoked by native to obtain the results of Android's locale resolution algorithm.static BitmapdecodeImage(ByteBuffer buffer, long imageGeneratorAddress) Called by native as a fallback method of image decoding.voiddeferredComponentInstallFailure(int loadingUnitId, String error, boolean isTransient) Indicates that a failure was encountered during the Android portion of downloading a dynamic feature module and loading a dart deferred library, which is typically done by DeferredComponentManager.voidvoidvoidDetaches thisFlutterJNIinstance from Flutter's native engine, which precludes any further communication between Android code and Flutter's platform agnostic engine.voiddispatchEmptyPlatformMessage(String channel, int responseId) Sends an empty reply (identified byresponseId) from Android to Flutter over the givenchannel.voiddispatchPlatformMessage(String channel, ByteBuffer message, int position, int responseId) Sends a replymessagefrom Android to Flutter over the givenchannel.voiddispatchPointerDataPacket(ByteBuffer buffer, int position) Sends a packet of pointer data to Flutter's engine.voiddispatchSemanticsAction(int nodeId, int action, ByteBuffer args, int argsPosition) Sends a semantics action to Flutter's engine, given arguments that are already encoded for the engine.voiddispatchSemanticsAction(int nodeId, AccessibilityBridge.Action action) Sends a semantics action to Flutter's engine, without any additional arguments.voiddispatchSemanticsAction(int nodeId, AccessibilityBridge.Action action, Object args) Sends a semantics action to Flutter's engine, with additional arguments.voidbooleanChecks launch settings for whether software rendering is requested.floatgetScaledFontSize(float fontSize, int configurationId) static StringVM Service URI for the VM instance.voidhandlePlatformMessage(String channel, ByteBuffer message, int replyId, long messageData) voidvoidinit(Context context, String[] args, String bundlePath, String appStoragePath, String engineCachesPath, long initTimeMillis, int apiLevel) Perform one time initialization of the Dart VM and Flutter engine.voidinvokePlatformMessageEmptyResponseCallback(int responseId) voidinvokePlatformMessageResponseCallback(int responseId, ByteBuffer message, int position) booleanReturns true if this instance ofFlutterJNIis connected to Flutter's native engine via a Java Native Interface (JNI).booleanisCodePointEmoji(int codePoint) booleanisCodePointEmojiModifier(int codePoint) booleanisCodePointEmojiModifierBase(int codePoint) booleanisCodePointRegionalIndicator(int codePoint) booleanisCodePointVariantSelector(int codePoint) booleanWhether the SurfaceControl swapchain required for hcpp is enabled and active.voidloadDartDeferredLibrary(int loadingUnitId, String[] searchPaths) Searches each of the provided paths for a valid Dart shared library .so file and resolves symbols to load into the dart VM.voidloadLibrary(Context context) Loads the libflutter.so C++ library.voidmarkTextureFrameAvailable(long textureId) Call this method to inform Flutter that a texture previously registered withregisterTexture(long, SurfaceTextureWrapper)has a new frame available.static voidnativeImageHeaderCallback(long imageGeneratorPointer, int width, int height) static FlutterCallbackInformationnativeLookupCallbackInformation(long handle) Deprecated.voidNotifies the Dart VM of a low memory event, or that the application is in a state such that now is an appropriate time to free resources, such as going to the background.voidvoidonDisplayOverlaySurface(int id, int x, int y, int width, int height) voidonDisplayPlatformView(int viewId, int x, int y, int width, int height, int viewWidth, int viewHeight, FlutterMutatorsStack mutatorsStack) voidonDisplayPlatformView2(int viewId, int x, int y, int width, int height, int viewWidth, int viewHeight, FlutterMutatorsStack mutatorsStack) voidvoidvoidonSurfaceChanged(int width, int height) Call this method when theSurfacechanges that was previously registered withonSurfaceCreated(Surface).voidonSurfaceCreated(Surface surface) Call this method when aSurfacehas been created onto which you would like Flutter to paint.voidCall this method when theSurfaceis destroyed that was previously registered withonSurfaceCreated(Surface).voidonSurfaceWindowChanged(Surface surface) In hybrid composition, call this method when theSurfacehas changed.voidonVsync(long frameDelayNanos, long refreshPeriodNanos, long cookie) Notifies the engine that the Choreographer has signaled a vsync.longperformNativeAttach(FlutterJNI flutterJNI) voidPrefetch the default font manager provided by txt::GetDefaultFontManager() which is a process-wide singleton owned by Skia.voidregisterImageTexture(long textureId, TextureRegistry.ImageConsumer imageTexture, boolean resetOnBackground) Registers a ImageTexture with the given id.voidregisterTexture(long textureId, SurfaceTextureWrapper textureWrapper) Gives control of aSurfaceTextureto Flutter so that Flutter can display that texture within Flutter's UI.voidremoveEngineLifecycleListener(FlutterEngine.EngineLifecycleListener engineLifecycleListener) Removes the givenengineLifecycleListener, which was previously added usingaddIsDisplayingFlutterUiListener(FlutterUiDisplayListener).voidRemoves aFlutterUiDisplayListenerthat was added withaddIsDisplayingFlutterUiListener(FlutterUiDisplayListener).voidrequestDartDeferredLibrary(int loadingUnitId) Called by dart to request that a Dart deferred library corresponding to loadingUnitId be downloaded (if necessary) and loaded into the dart vm.voidrunBundleAndSnapshotFromLibrary(String bundlePath, String entrypointFunctionName, String pathToEntrypointFunction, AssetManager assetManager, List<String> entrypointArgs, long engineId) Executes a Dart entrypoint.voidSchedule the engine to draw a frame but does not invalidate the layout tree.voidsetAccessibilityDelegate(FlutterJNI.AccessibilityDelegate accessibilityDelegate) Sets theFlutterJNI.AccessibilityDelegatefor the attached Flutter context.voidsetAccessibilityFeatures(int flags) voidsetAccessibilityFeaturesInNative(int flags) voidThe Android vsync waiter implementation in C++ needs to know when a vsync signal arrives, which is obtained via Java API.voidsetDeferredComponentManager(io.flutter.embedding.engine.deferredcomponents.DeferredComponentManager deferredComponentManager) Sets the deferred component manager that is used to download and install split features.voidsetLocalizationPlugin(io.flutter.plugin.localization.LocalizationPlugin localizationPlugin) Sets the localization plugin that is used in various localization methods.voidsetPlatformMessageHandler(PlatformMessageHandler platformMessageHandler) Sets the handler for all platform messages that come from the attached platform view to Java.voidsetPlatformViewsController(PlatformViewsController platformViewsController) voidsetPlatformViewsController2(PlatformViewsController2 platformViewsController2) voidsetRefreshRateFPS(float refreshRateFPS) Notifies the engine about the refresh rate of the display when the API level is below 30.voidsetSemanticsEnabled(boolean enabled) Instructs Flutter to enable/disable its semantics tree, which is used by Flutter to support accessibility and related behaviors.voidsetSemanticsEnabledInNative(boolean enabled) voidsetViewportMetrics(float devicePixelRatio, int physicalWidth, int physicalHeight, int physicalPaddingTop, int physicalPaddingRight, int physicalPaddingBottom, int physicalPaddingLeft, int physicalViewInsetTop, int physicalViewInsetRight, int physicalViewInsetBottom, int physicalViewInsetLeft, int systemGestureInsetTop, int systemGestureInsetRight, int systemGestureInsetBottom, int systemGestureInsetLeft, int physicalTouchSlop, int[] displayFeaturesBounds, int[] displayFeaturesType, int[] displayFeaturesState) Call this method to notify Flutter of the current device viewport metrics that are applies to the Flutter UI that is being rendered.voidspawn(String entrypointFunctionName, String pathToEntrypointFunction, String initialRoute, List<String> entrypointArgs, long engineId) Spawns a new FlutterJNI instance from the current instance.voidvoidunregisterTexture(long textureId) Unregisters a texture that was registered withregisterTexture(long, SurfaceTextureWrapper).voidupdateDisplayMetrics(int displayId, float width, float height, float density) voidupdateJavaAssetManager(AssetManager assetManager, String assetBundlePath) Adds the specified AssetManager as an APKAssetResolver in the Flutter Engine's AssetManager.void
-
Constructor Details
-
FlutterJNI
public FlutterJNI()
-
-
Method Details
-
loadLibrary
Loads the libflutter.so C++ library.This must be called before any other native methods, and can be overridden by tests to avoid loading native libraries.
This method should only be called once across all FlutterJNI instances.
-
prefetchDefaultFontManager
public void prefetchDefaultFontManager()Prefetch the default font manager provided by txt::GetDefaultFontManager() which is a process-wide singleton owned by Skia. Note that, the first call to txt::GetDefaultFontManager() will take noticeable time, but later calls will return a reference to the preexisting font manager.This method should only be called once across all FlutterJNI instances.
-
init
public void init(@NonNull Context context, @NonNull String[] args, @Nullable String bundlePath, @NonNull String appStoragePath, @NonNull String engineCachesPath, long initTimeMillis, int apiLevel) Perform one time initialization of the Dart VM and Flutter engine.This method must be called only once. Calling more than once will cause an exception.
- Parameters:
context- The application context.args- Arguments to the Dart VM/Flutter engine.bundlePath- For JIT runtimes, the path to the Dart kernel file for the application.appStoragePath- The path to the application data directory.engineCachesPath- The path to the application cache directory.initTimeMillis- The time, in milliseconds, taken for initialization.apiLevel- The current Android API level.
-
getIsSoftwareRenderingEnabled
@UiThread public boolean getIsSoftwareRenderingEnabled()Checks launch settings for whether software rendering is requested.The value is the same per program.
-
getVMServiceUri
VM Service URI for the VM instance.Its value is set by the native engine once
init(Context, String[], String, String, String, long, int)is run. -
setRefreshRateFPS
public void setRefreshRateFPS(float refreshRateFPS) Notifies the engine about the refresh rate of the display when the API level is below 30.For API 30 and above, this value is ignored.
Calling this method multiple times will update the refresh rate for the next vsync period. However, callers should avoid calling
Display.getRefreshRate()frequently, since it is expensive on some vendor implementations.- Parameters:
refreshRateFPS- The refresh rate in nanoseconds.
-
updateDisplayMetrics
public void updateDisplayMetrics(int displayId, float width, float height, float density) -
updateRefreshRate
public void updateRefreshRate() -
setAsyncWaitForVsyncDelegate
The Android vsync waiter implementation in C++ needs to know when a vsync signal arrives, which is obtained via Java API. The delegate set here is called on the C++ side when the engine is ready to wait for the next vsync signal. The delegate is expected to add a postFrameCallback to theChoreographer, and callonVsync(long,long,long)to notify the engine.- Parameters:
delegate- The delegate that will call the engine back on the next vsync signal.
-
onVsync
public void onVsync(long frameDelayNanos, long refreshPeriodNanos, long cookie) Notifies the engine that the Choreographer has signaled a vsync.- Parameters:
frameDelayNanos- The time in nanoseconds when the frame started being rendered, subtracted from theSystem.nanoTime()timebase.refreshPeriodNanos- The display refresh period in nanoseconds.cookie- An opaque handle to the C++ VSyncWaiter object.
-
nativeLookupCallbackInformation
@NonNull @Deprecated public static FlutterCallbackInformation nativeLookupCallbackInformation(long handle) Deprecated. -
isCodePointEmoji
public boolean isCodePointEmoji(int codePoint) -
isCodePointEmojiModifier
public boolean isCodePointEmojiModifier(int codePoint) -
isCodePointEmojiModifierBase
public boolean isCodePointEmojiModifierBase(int codePoint) -
isCodePointVariantSelector
public boolean isCodePointVariantSelector(int codePoint) -
isCodePointRegionalIndicator
public boolean isCodePointRegionalIndicator(int codePoint) -
isAttached
public boolean isAttached()Returns true if this instance ofFlutterJNIis connected to Flutter's native engine via a Java Native Interface (JNI). -
attachToNative
@UiThread public void attachToNative()Attaches thisFlutterJNIinstance to Flutter's native engine, which allows for communication between Android code and Flutter's platform agnostic engine.This method must not be invoked if
FlutterJNIis already attached to native. -
performNativeAttach
-
spawn
@UiThread @NonNull public FlutterJNI spawn(@Nullable String entrypointFunctionName, @Nullable String pathToEntrypointFunction, @Nullable String initialRoute, @Nullable List<String> entrypointArgs, long engineId) Spawns a new FlutterJNI instance from the current instance.This creates another native shell from the current shell. This causes the 2 shells to re-use some of the shared resources, reducing the total memory consumption versus creating a new FlutterJNI by calling its standard constructor.
This can only be called once the current FlutterJNI instance is attached by calling
attachToNative().Static methods that should be only called once such as
init(Context, String[], String, String, String, long, int)shouldn't be called again on the spawned FlutterJNI instance. -
detachFromNativeAndReleaseResources
@UiThread public void detachFromNativeAndReleaseResources()Detaches thisFlutterJNIinstance from Flutter's native engine, which precludes any further communication between Android code and Flutter's platform agnostic engine.This method must not be invoked if
FlutterJNIis not already attached to native.Invoking this method will result in the release of all native-side resources that were set up during
attachToNative()orspawn(String, String, String, List, long), or accumulated thereafter.It is permissible to re-attach this instance to native after detaching it from native.
-
addIsDisplayingFlutterUiListener
Adds aFlutterUiDisplayListener, which receives a callback when Flutter's engine notifiesFlutterJNIthat Flutter is painting pixels to theSurfacethat was provided to Flutter. -
removeIsDisplayingFlutterUiListener
@UiThread public void removeIsDisplayingFlutterUiListener(@NonNull FlutterUiDisplayListener listener) Removes aFlutterUiDisplayListenerthat was added withaddIsDisplayingFlutterUiListener(FlutterUiDisplayListener). -
nativeImageHeaderCallback
public static void nativeImageHeaderCallback(long imageGeneratorPointer, int width, int height) -
decodeImage
@VisibleForTesting @Nullable public static Bitmap decodeImage(@NonNull ByteBuffer buffer, long imageGeneratorAddress) Called by native as a fallback method of image decoding. There are other ways to decode images on lower API levels, they involve copying the native data _and_ do not support any additional formats, whereas ImageDecoder supports HEIF images. Unlike most other methods called from native, this method is expected to be called on a worker thread, since it only uses thread safe methods and may take multiple frames to complete. -
onFirstFrame
@VisibleForTesting @UiThread public void onFirstFrame() -
onSurfaceCreated
Call this method when aSurfacehas been created onto which you would like Flutter to paint.See
SurfaceHolder.Callback.surfaceCreated(SurfaceHolder)for an example of where this call might originate. -
onSurfaceWindowChanged
In hybrid composition, call this method when theSurfacehas changed.In hybrid composition, the root surfaces changes from
SurfaceHolder.getSurface()toImageReader.getSurface()when a platform view is in the current frame. -
onSurfaceChanged
@UiThread public void onSurfaceChanged(int width, int height) Call this method when theSurfacechanges that was previously registered withonSurfaceCreated(Surface).See
SurfaceHolder.Callback.surfaceChanged(SurfaceHolder, int, int, int)for an example of where this call might originate. -
onSurfaceDestroyed
@UiThread public void onSurfaceDestroyed()Call this method when theSurfaceis destroyed that was previously registered withonSurfaceCreated(Surface).See
SurfaceHolder.Callback.surfaceDestroyed(SurfaceHolder)for an example of where this call might originate. -
setViewportMetrics
@UiThread public void setViewportMetrics(float devicePixelRatio, int physicalWidth, int physicalHeight, int physicalPaddingTop, int physicalPaddingRight, int physicalPaddingBottom, int physicalPaddingLeft, int physicalViewInsetTop, int physicalViewInsetRight, int physicalViewInsetBottom, int physicalViewInsetLeft, int systemGestureInsetTop, int systemGestureInsetRight, int systemGestureInsetBottom, int systemGestureInsetLeft, int physicalTouchSlop, int[] displayFeaturesBounds, int[] displayFeaturesType, int[] displayFeaturesState) Call this method to notify Flutter of the current device viewport metrics that are applies to the Flutter UI that is being rendered.This method should be invoked with initial values upon attaching to native. Then, it should be invoked any time those metrics change while
FlutterJNIis attached to native. -
dispatchPointerDataPacket
Sends a packet of pointer data to Flutter's engine. -
setPlatformViewsController
@UiThread public void setPlatformViewsController(@NonNull PlatformViewsController platformViewsController) -
setPlatformViewsController2
@UiThread public void setPlatformViewsController2(@NonNull PlatformViewsController2 platformViewsController2) -
setAccessibilityDelegate
@UiThread public void setAccessibilityDelegate(@Nullable FlutterJNI.AccessibilityDelegate accessibilityDelegate) Sets theFlutterJNI.AccessibilityDelegatefor the attached Flutter context.The
FlutterJNI.AccessibilityDelegateis responsible for maintaining an Android-side cache of Flutter's semantics tree and custom accessibility actions. This cache should be hooked up to Android's accessibility system.See
AccessibilityBridgefor an example of anFlutterJNI.AccessibilityDelegateand the surrounding responsibilities. -
dispatchSemanticsAction
Sends a semantics action to Flutter's engine, without any additional arguments. -
dispatchSemanticsAction
public void dispatchSemanticsAction(int nodeId, @NonNull AccessibilityBridge.Action action, @Nullable Object args) Sends a semantics action to Flutter's engine, with additional arguments. -
dispatchSemanticsAction
@UiThread public void dispatchSemanticsAction(int nodeId, int action, @Nullable ByteBuffer args, int argsPosition) Sends a semantics action to Flutter's engine, given arguments that are already encoded for the engine.To send a semantics action that has not already been encoded, see
dispatchSemanticsAction(int, AccessibilityBridge.Action)anddispatchSemanticsAction(int, AccessibilityBridge.Action, Object). -
setSemanticsEnabled
@UiThread public void setSemanticsEnabled(boolean enabled) Instructs Flutter to enable/disable its semantics tree, which is used by Flutter to support accessibility and related behaviors. -
setSemanticsEnabledInNative
@VisibleForTesting public void setSemanticsEnabledInNative(boolean enabled) -
setAccessibilityFeatures
@UiThread public void setAccessibilityFeatures(int flags) -
setAccessibilityFeaturesInNative
@VisibleForTesting public void setAccessibilityFeaturesInNative(int flags) -
registerTexture
@UiThread public void registerTexture(long textureId, @NonNull SurfaceTextureWrapper textureWrapper) Gives control of aSurfaceTextureto Flutter so that Flutter can display that texture within Flutter's UI. -
registerImageTexture
@UiThread public void registerImageTexture(long textureId, @NonNull TextureRegistry.ImageConsumer imageTexture, boolean resetOnBackground) Registers a ImageTexture with the given id.REQUIRED: Callers should eventually unregisterTexture with the same id.
-
markTextureFrameAvailable
@UiThread public void markTextureFrameAvailable(long textureId) Call this method to inform Flutter that a texture previously registered withregisterTexture(long, SurfaceTextureWrapper)has a new frame available.Invoking this method instructs Flutter to update its presentation of the given texture so that the new frame is displayed.
-
scheduleFrame
@UiThread public void scheduleFrame()Schedule the engine to draw a frame but does not invalidate the layout tree. -
unregisterTexture
@UiThread public void unregisterTexture(long textureId) Unregisters a texture that was registered withregisterTexture(long, SurfaceTextureWrapper). -
runBundleAndSnapshotFromLibrary
@UiThread public void runBundleAndSnapshotFromLibrary(@NonNull String bundlePath, @Nullable String entrypointFunctionName, @Nullable String pathToEntrypointFunction, @NonNull AssetManager assetManager, @Nullable List<String> entrypointArgs, long engineId) Executes a Dart entrypoint.This can only be done once per JNI attachment because a Dart isolate can only be entered once.
-
setPlatformMessageHandler
@UiThread public void setPlatformMessageHandler(@Nullable PlatformMessageHandler platformMessageHandler) Sets the handler for all platform messages that come from the attached platform view to Java.Communication between a specific Flutter context (Dart) and the host platform (Java) is accomplished by passing messages. Messages can be sent from Java to Dart with the corresponding
FlutterJNImethods:FlutterJNIis also the recipient of all platform messages sent from its attached Flutter context.FlutterJNIdoes not know what to do with these messages, so a handler is exposed to allow these messages to be processed in whatever manner is desired:setPlatformMessageHandler(PlatformMessageHandler)If a message is received but no
PlatformMessageHandleris registered, that message will be dropped (ignored). Therefore, when usingFlutterJNIto integrate a Flutter context in an app, aPlatformMessageHandlermust be registered for 2-way Java/Dart communication to operate correctly. Moreover, the handler must be implemented such that fundamental platform messages are handled as expected. -
cleanupMessageData
public void cleanupMessageData(long messageData) Destroys the resources provided sent to `handlePlatformMessage`.This can be called on any thread.
- Parameters:
messageData- the argument sent to handlePlatformMessage.
-
handlePlatformMessage
@VisibleForTesting public void handlePlatformMessage(@NonNull String channel, ByteBuffer message, int replyId, long messageData) -
dispatchEmptyPlatformMessage
Sends an empty reply (identified byresponseId) from Android to Flutter over the givenchannel. -
dispatchPlatformMessage
@UiThread public void dispatchPlatformMessage(@NonNull String channel, @Nullable ByteBuffer message, int position, int responseId) Sends a replymessagefrom Android to Flutter over the givenchannel. -
invokePlatformMessageEmptyResponseCallback
public void invokePlatformMessageEmptyResponseCallback(int responseId) -
invokePlatformMessageResponseCallback
public void invokePlatformMessageResponseCallback(int responseId, @NonNull ByteBuffer message, int position) -
addEngineLifecycleListener
@UiThread public void addEngineLifecycleListener(@NonNull FlutterEngine.EngineLifecycleListener engineLifecycleListener) Adds the givenengineLifecycleListenerto be notified of Flutter engine lifecycle events, e.g.,FlutterEngine.EngineLifecycleListener.onPreEngineRestart(). -
removeEngineLifecycleListener
@UiThread public void removeEngineLifecycleListener(@NonNull FlutterEngine.EngineLifecycleListener engineLifecycleListener) Removes the givenengineLifecycleListener, which was previously added usingaddIsDisplayingFlutterUiListener(FlutterUiDisplayListener). -
onDisplayOverlaySurface
@UiThread public void onDisplayOverlaySurface(int id, int x, int y, int width, int height) -
onBeginFrame
@UiThread public void onBeginFrame() -
onEndFrame
@UiThread public void onEndFrame() -
createOverlaySurface
-
destroyOverlaySurfaces
@UiThread public void destroyOverlaySurfaces() -
createTransaction
-
swapTransactions
@UiThread public void swapTransactions() -
applyTransactions
@UiThread public void applyTransactions() -
endFrame2
@UiThread public void endFrame2() -
createOverlaySurface2
-
showOverlaySurface2
@UiThread public void showOverlaySurface2() -
hideOverlaySurface2
@UiThread public void hideOverlaySurface2() -
destroyOverlaySurface2
@UiThread public void destroyOverlaySurface2() -
onDisplayPlatformView2
@UiThread public void onDisplayPlatformView2(int viewId, int x, int y, int width, int height, int viewWidth, int viewHeight, FlutterMutatorsStack mutatorsStack) -
setLocalizationPlugin
@UiThread public void setLocalizationPlugin(@Nullable io.flutter.plugin.localization.LocalizationPlugin localizationPlugin) Sets the localization plugin that is used in various localization methods. -
computePlatformResolvedLocale
Invoked by native to obtain the results of Android's locale resolution algorithm. -
getScaledFontSize
@Nullable public float getScaledFontSize(float fontSize, int configurationId) -
setDeferredComponentManager
@UiThread public void setDeferredComponentManager(@Nullable io.flutter.embedding.engine.deferredcomponents.DeferredComponentManager deferredComponentManager) Sets the deferred component manager that is used to download and install split features. -
requestDartDeferredLibrary
@UiThread public void requestDartDeferredLibrary(int loadingUnitId) Called by dart to request that a Dart deferred library corresponding to loadingUnitId be downloaded (if necessary) and loaded into the dart vm.This method delegates the task to DeferredComponentManager, which handles the download and loading of the dart library and any assets.
- Parameters:
loadingUnitId- The loadingUnitId is assigned during compile time by gen_snapshot and is automatically retrieved when loadLibrary() is called on a dart deferred library.
-
loadDartDeferredLibrary
Searches each of the provided paths for a valid Dart shared library .so file and resolves symbols to load into the dart VM.Successful loading of the dart library completes the future returned by loadLibrary() that triggered the install/load process.
- Parameters:
loadingUnitId- The loadingUnitId is assigned during compile time by gen_snapshot and is automatically retrieved when loadLibrary() is called on a dart deferred library. This is used to identify which Dart deferred library the resolved correspond to.searchPaths- An array of paths in which to look for valid dart shared libraries. This supports paths within zipped apks as long as the apks are not compressed using the `path/to/apk.apk!path/inside/apk/lib.so` format. Paths will be tried first to last and ends when a library is successfully found. When the found library is invalid, no additional paths will be attempted.
-
updateJavaAssetManager
@UiThread public void updateJavaAssetManager(@NonNull AssetManager assetManager, @NonNull String assetBundlePath) Adds the specified AssetManager as an APKAssetResolver in the Flutter Engine's AssetManager.This may be used to update the engine AssetManager when a new deferred component is installed and a new Android AssetManager is created with access to new assets.
- Parameters:
assetManager- An android AssetManager that is able to access the newly downloaded assets.assetBundlePath- The subdirectory that the flutter assets are stored in. The typical value is `flutter_assets`.
-
deferredComponentInstallFailure
@UiThread public void deferredComponentInstallFailure(int loadingUnitId, @NonNull String error, boolean isTransient) Indicates that a failure was encountered during the Android portion of downloading a dynamic feature module and loading a dart deferred library, which is typically done by DeferredComponentManager.This will inform dart that the future returned by loadLibrary() should complete with an error.
- Parameters:
loadingUnitId- The loadingUnitId that corresponds to the dart deferred library that failed to install.error- The error message to display.isTransient- When isTransient is false, new attempts to install will automatically result in same error in Dart before the request is passed to Android.
-
onDisplayPlatformView
@UiThread public void onDisplayPlatformView(int viewId, int x, int y, int width, int height, int viewWidth, int viewHeight, FlutterMutatorsStack mutatorsStack) -
getBitmap
-
notifyLowMemoryWarning
@UiThread public void notifyLowMemoryWarning()Notifies the Dart VM of a low memory event, or that the application is in a state such that now is an appropriate time to free resources, such as going to the background.This is distinct from sending a SystemChannel message about low memory, which only notifies the running Flutter application.
-
IsSurfaceControlEnabled
public boolean IsSurfaceControlEnabled()Whether the SurfaceControl swapchain required for hcpp is enabled and active.
-