คำถามติดแท็ก flutter-channel

4
สร้างช่องทางวิธีหลังจากอัพเกรด flutter- ไม่สามารถแก้ไขเมธอด getFlutterView ()
ฉันใช้วิธี 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() …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.