สร้างช่องทางวิธีหลังจากอัพเกรด flutter- ไม่สามารถแก้ไขเมธอด getFlutterView ()


9

ฉันใช้วิธี Android ดั้งเดิมในแอพพลิเคชั่นของฉันโดยใช้เอกสารที่กล่าวว่าใช้

MethodChannel(flutterView, CHANNEL).setMethodCallHandler...

แต่หลังจากอัพเกรดการกระพือMethodChannelฟังก์ชั่นไม่ต้องการflutterViewและไม่มีflutterViewอีกต่อไป

can not resolve method getFlutterView()

ฉันคิดว่าควรมีการสอนใหม่สำหรับการสร้างช่อง

มันต้องการบางอย่างBinaryMessengerซึ่งฉันไม่รู้ว่าจะให้อะไรแทน

นี่คือรหัสเก่าที่ไม่ทำงานอีกต่อไป:

import io.flutter.app.FlutterActivity;
import io.flutter.plugin.common.MethodCall;
import io.flutter.plugin.common.MethodChannel;
import io.flutter.plugin.common.MethodChannel.MethodCallHandler;
import io.flutter.plugin.common.MethodChannel.Result;

public class MainActivity extends FlutterActivity {
private static final String CHANNEL = "samples.flutter.dev/battery";

@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    GeneratedPluginRegistrant.registerWith(this);

    new MethodChannel(getFlutterView(), CHANNEL).setMethodCallHandler(
            new MethodCallHandler() {
                @Override
                public void onMethodCall(MethodCall call, Result result) {
                    // Note: this method is invoked on the main thread.
                    // TODO
                }
            });
}

คำตอบ:


15

แทนที่ด้วยgetFlutterView()getFlutterEngine().getDartExecutor().getBinaryMessenger()

คุณไม่จริงต้อง.getBinaryMessenger()เป็นDartExecutorดำเนินการBinaryMessengerเอง (โดยเพียงแค่การส่งต่อ) แต่ผมคิดว่ามันถูกต้องมากขึ้นในการระบุผู้ส่งสาร


มันทำงานได้ดี แต่ฉันเดาว่ามีการเปลี่ยนแปลงบางอย่างในการใช้งานเมธอดด้วยเช่นกันไม่มี MethodCallHandler () และ onMethodCall () ฉันเดา
Mahmood Bkh

ช่วยชีวิต! ขอบคุณมาก! +1
devDeejay


2

เพียงเพิ่มวิธีนี้ในชั้นเรียนของคุณ:

BinaryMessenger getFlutterView(){
    return getFlutterEngine().getDartExecutor().getBinaryMessenger();
}

จากนั้นเลือกแทนที่ (Refactor> Rename) ทั้งหมด "getFlutterView" เป็น "getBinaryMessenger" เพื่อให้ได้รหัสที่อ่านง่ายขึ้น:

BinaryMessenger getBinaryMessenger(){
    return getFlutterEngine().getDartExecutor().getBinaryMessenger();
}

1

ฉันใช้เวลาหลายวันในการหาวิธีเพิ่ม Flutter UI ลงในแอพ Android ปัจจุบันของฉัน ความท้าทายที่ยิ่งใหญ่ที่สุดคือการทำให้ MethodChannel ทำงานกับ FlutterActivity ที่ถูกเรียกจาก MainActivity ฉันรู้ว่านี่แตกต่างจากคำถามที่ถามเล็กน้อย แต่โพสต์นี้ถูกส่งคืนเมื่อฉันค้นหา 'Android FlutterActivity MethodChannel' หลังจากไปถึงแหล่งข้อมูลมากมายเกี่ยวกับวิธีการทำสิ่งนี้ในที่สุดฉันก็พบโซลูชันของฉันที่นี่: https://github.com/flutter/samples/tree/master/add_to_app/android_using_plugin/app/src/main/java/dev/flutter/ ตัวอย่าง / androidusingplugin

เริ่มแรกใน Android Studio เมื่อเปิดแอพที่มีอยู่ฉันแตะที่ File, New, New Module, Flutter Module ฉันได้รับข้อผิดพลาดและต้องทำตามขั้นตอนด้วยตนเอง

วัตถุประสงค์ของฉันคือการเปิดใช้ FlutterActivity (เปิด main.dart ใน flutter_module) ใน MainActivity - onCreate จากนั้นพัฒนา FlutterActivity ของหน้าจอ Flutter ใช้ประโยชน์จากรหัส Flutter ดั้งเดิมมากที่สุดโดยใช้แพลตฟอร์มแบบ จำกัด โดยใช้ MethodChannel ในขณะที่ฉันพัฒนารหัสทดแทน Flutter ฉันจะยังคงให้ความเห็นรหัส Android ที่มีอยู่ต่อไป

นี่คือสิ่งที่ได้ผลในที่สุดสำหรับฉัน:

../App_Project/Android/Existing_Android_App/settings.gradle

include ':app'
setBinding(new Binding([gradle: this]))
evaluate(new File(settingsDir.parentFile, '../flutter_module/.android/include_flutter.groovy'))
include ':flutter_module’
project(':flutter_module’).projectDir = new File('../../flutter_module’)
rootProject.name=‘existing_android_app’

../App_Project/Android/Existing_Android_App/app/build.gradle

dependencies {
…
    implementation project(':flutter')
}

../App_Project/Android/Existing_Android_App/app/src/main/AndroidManifest.xml

<activity
    android:name="io.flutter.embedding.android.FlutterActivity"
    android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
    android:hardwareAccelerated="true"
    android:windowSoftInputMode="adjustResize" />

../App_Project/Android/Existing_Android_App/app/src/main/java/com/existing_android_app/MainActivity.java

package com.existing_android_app;

import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;

import io.flutter.embedding.android.FlutterActivity;
import io.flutter.embedding.engine.FlutterEngine;
import io.flutter.embedding.engine.FlutterEngineCache;
import io.flutter.embedding.engine.dart.DartExecutor;
import io.flutter.plugin.common.MethodCall;
import io.flutter.plugin.common.MethodChannel;

public class MainActivity extends AppCompatActivity {

    final String ENGINE_ID = "1";

    @Override
    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        FlutterEngine flutterEngine = new FlutterEngine(this);
        flutterEngine.getDartExecutor().executeDartEntrypoint(DartExecutor.DartEntrypoint.createDefault());

        FlutterEngineCache.getInstance().put(ENGINE_ID, flutterEngine);

        MethodChannel channel = new MethodChannel(flutterEngine.getDartExecutor(), "com.existing_android_app/myMethodChannel");

        channel.setMethodCallHandler(
                new MethodChannel.MethodCallHandler() {
                    @Override
                    public void onMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result result) {
                        String url = call.argument("url");
                        if (call.method.equals("openBrowser")) {
                            openBrowser(url);
                        } 
                          else {
                            result.notImplemented();
                        }
                    }
                });

        startActivity(FlutterActivity.withCachedEngine(ENGINE_ID).build(this));
    }

    void openBrowser(String url) {

        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse(url));

        this.startActivity(intent);
    }
}

../App_Project/flutter_module/lib/home_page.dart

class AppHomePage extends StatefulWidget {
  @override
  _HomePageState createState() => _HomePageState();
}

class _HomePageState extends State<AppHomePage> {

  static const platform = const MethodChannel(‘com.existing_android_app/myMethodChannel’);

  Future<void> _openBrowser() async {
    try {
      final int result = await platform.invokeMethod('openBrowser', <String, String> { 'url': "http://bing.com” });
    }
    catch (e) {
      print('***** _openBrowser error: ' + e.toString());
    }
  }

  @override
  Widget build(BuildContext context) {
    return SafeArea(
      child: Scaffold(
        appBar: CustomAppBar(),
        body: Column(
          children: <Widget>[
            RaisedButton(
              label: Text('Search',
                style: TextStyle(fontSize: 18.0),
              ),
              onPressed: () {  _openBrowser(); },
            ) // RaisedButton.icon
          ], // Widget
        ) // Column
      ) // Scaffold
    ); // SafeArea
  }
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.