io.flutter.view.FlutterMain Java Examples
The following examples show how to use
io.flutter.view.FlutterMain.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: XFlutterActivityDelegate.java From hybrid_stack_manager with MIT License | 6 votes |
private boolean loadIntent(Intent intent, boolean reuseIsolate) { String action = intent.getAction(); if (Intent.ACTION_RUN.equals(action)) { String route = intent.getStringExtra("route"); String appBundlePath = intent.getDataString(); if (appBundlePath == null) { // Fall back to the installation path if no bundle path // was specified. appBundlePath = FlutterMain.findAppBundlePath(activity.getApplicationContext()); } if (route != null) { flutterView.setInitialRoute(route); } flutterView.runFromBundle(appBundlePath, intent.getStringExtra("snapshot"), "main", reuseIsolate); return true; } return false; }
Example #2
Source File: XFlutterActivityDelegate.java From hybrid_stack_manager with MIT License | 6 votes |
private boolean loadIntent(Intent intent, boolean reuseIsolate) { String action = intent.getAction(); if (Intent.ACTION_RUN.equals(action)) { String route = intent.getStringExtra("route"); String appBundlePath = intent.getDataString(); if (appBundlePath == null) { // Fall back to the installation path if no bundle path // was specified. appBundlePath = FlutterMain.findAppBundlePath(activity.getApplicationContext()); } if (route != null) { flutterView.setInitialRoute(route); } flutterView.runFromBundle(appBundlePath, intent.getStringExtra("snapshot"), "main", reuseIsolate); return true; } return false; }
Example #3
Source File: AndroidJobScheduler.java From android_job_scheduler with Apache License 2.0 | 6 votes |
@Override public boolean onStartJob(JobParameters params) { PersistableBundle extras = params.getExtras(); Context context = getApplicationContext(); if (isApplicationRunning(context)) { if (callbackMethodChannel != null) { callbackMethodChannel.invokeMethod("firedWhileApplicationRunning", null); } } else { FlutterNativeView nativeView = new FlutterNativeView(context); if (AndroidJobScheduler.pluginRegistrantCallback != null) { AndroidJobScheduler.pluginRegistrantCallback.registerWith(nativeView.getPluginRegistry()); } nativeView.runFromBundle(FlutterMain.findAppBundlePath(context), null, extras.getString(B_KEY_DART_CB), true); } if (!extras.containsKey(B_KEY_SCHEDULE_ONCE)) { AndroidJobScheduler.scheduleEvery(getApplicationContext(), AndroidJobSchedulerUtils.persistableBundleToJobInfo(extras)); } jobFinished(params, false); return true; }
Example #4
Source File: FlutterIsolatePlugin.java From flutter_isolate with MIT License | 5 votes |
private void startNextIsolate() { IsolateHolder isolate = queuedIsolates.peek(); FlutterMain.ensureInitializationComplete(context, null); if (flutterPluginBinding == null) isolate.view = new FlutterNativeView(context, true); else isolate.engine = new FlutterEngine(context); FlutterCallbackInformation cbInfo = FlutterCallbackInformation.lookupCallbackInformation(isolate.entryPoint); FlutterRunArguments runArgs = new FlutterRunArguments(); runArgs.bundlePath = FlutterMain.findAppBundlePath(context); runArgs.libraryPath = cbInfo.callbackLibraryPath; runArgs.entrypoint = cbInfo.callbackName; if (flutterPluginBinding == null) { isolate.controlChannel = new MethodChannel(isolate.view, NAMESPACE + "/control"); isolate.startupChannel = new EventChannel(isolate.view, NAMESPACE + "/event"); } else { isolate.controlChannel = new MethodChannel(isolate.engine.getDartExecutor().getBinaryMessenger(), NAMESPACE + "/control"); isolate.startupChannel = new EventChannel(isolate.engine.getDartExecutor().getBinaryMessenger(), NAMESPACE + "/event"); } isolate.startupChannel.setStreamHandler(this); isolate.controlChannel.setMethodCallHandler(this); if (flutterPluginBinding == null) { registerWithRegistrant(isolate.view.getPluginRegistry()); isolate.view.runFromBundle(runArgs); } else { DartExecutor.DartCallback dartCallback = new DartExecutor.DartCallback(context.getAssets(), runArgs.bundlePath, cbInfo); isolate.engine.getDartExecutor().executeDartCallback(dartCallback); } }
Example #5
Source File: XFlutterActivityDelegate.java From hybrid_stack_manager with MIT License | 5 votes |
public void runFlutterBundle(){ // When an activity is created for the first time, we direct the // FlutterView to re-use a pre-existing Isolate rather than create a new // one. This is so that an Isolate coming in from the ViewFactory is // used. final boolean reuseIsolate = true; if (loadIntent(activity.getIntent(), reuseIsolate)) { return; } String appBundlePath = FlutterMain.findAppBundlePath(activity.getApplicationContext()); if (appBundlePath != null) { flutterView.runFromBundle(appBundlePath, null, "main", reuseIsolate); } }
Example #6
Source File: XFlutterActivityDelegate.java From hybrid_stack_manager with MIT License | 5 votes |
public void runFlutterBundle(){ // When an activity is created for the first time, we direct the // FlutterView to re-use a pre-existing Isolate rather than create a new // one. This is so that an Isolate coming in from the ViewFactory is // used. final boolean reuseIsolate = true; if (loadIntent(activity.getIntent(), reuseIsolate)) { return; } String appBundlePath = FlutterMain.findAppBundlePath(activity.getApplicationContext()); if (appBundlePath != null) { flutterView.runFromBundle(appBundlePath, null, "main", reuseIsolate); } }
Example #7
Source File: Flutter.java From o2oa with GNU Affero General Public License v3.0 | 5 votes |
/** * Creates a {@link FlutterView} linked to the specified {@link Activity} and {@link Lifecycle}. * The optional initial route string will be made available to the Dart code (via * {@code window.defaultRouteName}) and may be used to determine which widget should be displayed * in the view. The default initialRoute is "/". * * @param activity an {@link Activity} * @param lifecycle a {@link Lifecycle} * @param initialRoute an initial route {@link String}, or null * @return a {@link FlutterView} */ @NonNull public static FlutterView createView(@NonNull final Activity activity, @NonNull final Lifecycle lifecycle, final String initialRoute) { FlutterMain.startInitialization(activity.getApplicationContext()); FlutterMain.ensureInitializationComplete(activity.getApplicationContext(), null); final FlutterNativeView nativeView = new FlutterNativeView(activity); final FlutterView flutterView = new FlutterView(activity, null, nativeView) { private final BasicMessageChannel<String> lifecycleMessages = new BasicMessageChannel<>(this, "flutter/lifecycle", StringCodec.INSTANCE); @Override public void onFirstFrame() { super.onFirstFrame(); setAlpha(1.0f); } @Override public void onPostResume() { // Overriding default behavior to avoid dictating system UI via PlatformPlugin. lifecycleMessages.send("AppLifecycleState.resumed"); } }; if (initialRoute != null) { flutterView.setInitialRoute(initialRoute); } lifecycle.addObserver(new LifecycleObserver() { @OnLifecycleEvent(Lifecycle.Event.ON_CREATE) public void onCreate() { final FlutterRunArguments arguments = new FlutterRunArguments(); arguments.bundlePath = FlutterMain.findAppBundlePath(activity.getApplicationContext()); arguments.entrypoint = "main"; flutterView.runFromBundle(arguments); GeneratedPluginRegistrant.registerWith(flutterView.getPluginRegistry()); } @OnLifecycleEvent(Lifecycle.Event.ON_START) public void onStart() { flutterView.onStart(); } @OnLifecycleEvent(Lifecycle.Event.ON_RESUME) public void onResume() { flutterView.onPostResume(); } @OnLifecycleEvent(Lifecycle.Event.ON_PAUSE) public void onPause() { flutterView.onPause(); } @OnLifecycleEvent(Lifecycle.Event.ON_STOP) public void onStop() { flutterView.onStop(); } @OnLifecycleEvent(Lifecycle.Event.ON_DESTROY) public void onDestroy() { flutterView.destroy(); } }); flutterView.setAlpha(0.0f); return flutterView; }
Example #8
Source File: MainApplication.java From reader-sdk-flutter-plugin with Apache License 2.0 | 4 votes |
@Override public void onCreate() { super.onCreate(); ReaderSdk.initialize(this); FlutterMain.startInitialization(this); }
Example #9
Source File: AndroidJobScheduler.java From android_job_scheduler with Apache License 2.0 | 4 votes |
@Override public void onCreate() { super.onCreate(); FlutterMain.ensureInitializationComplete(getApplicationContext(), null); }
Example #10
Source File: Flutter.java From CrazyDaily with Apache License 2.0 | 4 votes |
/** * Creates a {@link FlutterView} linked to the specified {@link Activity} and {@link Lifecycle}. * The optional initial route string will be made available to the Dart code (via * {@code window.defaultRouteName}) and may be used to determine which widget should be displayed * in the view. The default initialRoute is "/". * * @param activity an {@link Activity} * @param lifecycle a {@link Lifecycle} * @param initialRoute an initial route {@link String}, or null * @return a {@link FlutterView} */ @NonNull public static FlutterView createView(@NonNull final Activity activity, @NonNull final Lifecycle lifecycle, final String initialRoute) { FlutterMain.startInitialization(activity.getApplicationContext()); FlutterMain.ensureInitializationComplete(activity.getApplicationContext(), null); final FlutterNativeView nativeView = new FlutterNativeView(activity); final FlutterView flutterView = new FlutterView(activity, null, nativeView) { private final BasicMessageChannel<String> lifecycleMessages = new BasicMessageChannel<>(this, "flutter/lifecycle", StringCodec.INSTANCE); @Override public void onFirstFrame() { super.onFirstFrame(); setAlpha(1.0f); } @Override public void onPostResume() { // Overriding default behavior to avoid dictating system UI via PlatformPlugin. lifecycleMessages.send("AppLifecycleState.resumed"); } }; if (initialRoute != null) { flutterView.setInitialRoute(initialRoute); } lifecycle.addObserver(new LifecycleObserver() { @OnLifecycleEvent(Lifecycle.Event.ON_CREATE) public void onCreate() { final FlutterRunArguments arguments = new FlutterRunArguments(); arguments.bundlePath = FlutterMain.findAppBundlePath(activity.getApplicationContext()); arguments.entrypoint = "main"; flutterView.runFromBundle(arguments); } @OnLifecycleEvent(Lifecycle.Event.ON_START) public void onStart() { flutterView.onStart(); } @OnLifecycleEvent(Lifecycle.Event.ON_RESUME) public void onResume() { flutterView.onPostResume(); } @OnLifecycleEvent(Lifecycle.Event.ON_PAUSE) public void onPause() { flutterView.onPause(); } @OnLifecycleEvent(Lifecycle.Event.ON_STOP) public void onStop() { flutterView.onStop(); } @OnLifecycleEvent(Lifecycle.Event.ON_DESTROY) public void onDestroy() { flutterView.destroy(); } }); flutterView.setAlpha(0.0f); return flutterView; }
Example #11
Source File: Flutter.java From CrazyDaily with Apache License 2.0 | 2 votes |
/** * Initiates the Dart VM. Calling this method at an early point may help decreasing time to first * frame for a subsequently created {@link FlutterView}. * * @param applicationContext the application's {@link Context} */ public static void startInitialization(@NonNull Context applicationContext) { FlutterMain.startInitialization(applicationContext); }
Example #12
Source File: Flutter.java From o2oa with GNU Affero General Public License v3.0 | 2 votes |
/** * Initiates the Dart VM. Calling this method at an early point may help decreasing time to first * frame for a subsequently created {@link FlutterView}. * * @param applicationContext the application's {@link Context} */ public static void startInitialization(@NonNull Context applicationContext) { FlutterMain.startInitialization(applicationContext); }