所以,我在这里尝试在 Flutter 上实现我的 MethodChannel。
这是我的一些代码片段。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.mypackage">
<!-- rest of the code -->
<application
android:requestLegacyExternalStorage="true"
android:allowBackup="false"
android:name=".Application"
android:label="My App Name"
android:usesCleartextTraffic="true"
tools:replace="android:label"
android:icon="@mipmap/ic_launcher">
<service
android:name=".MyService"
android:enabled="true"
android:exported="true" />
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<meta-data
android:name="flutterEmbedding"
android:value="2" />
<!-- rest of the code -->
</application>
这就是我的 MainActivity 的样子
public class MainActivity extends FlutterActivity {
private Intent forService;
@Override
public void configureFlutterEngine(@NonNull FlutterEngine flutterEngine) {
GeneratedPluginRegistrant.registerWith(flutterEngine);
forService = new Intent(this, MyService.class);
new MethodChannel(flutterEngine.getDartExecutor().getBinaryMessenger(), "com.mypackage.messages")
.setMethodCallHandler(
(methodCall, result) -> {
Log.d("method", "method " + methodCall.method);
if (methodCall.method.equals("startService")) {
startService();
result.success("Service Started");
}
if (methodCall.method.equals("stopService")) {
stopService();
result.success("Service Stoped");
}
}
);
}
private void startService() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
startForegroundService(forService);
} else {
startService(forService);
}
}
private void stopService() {
stopService(forService);
}
}
这就是我从 Dart 方面调用我自己的 MethodChannel 的方式。
if (Platform.isAndroid) {
var methodChannel = MethodChannel("com.mypackage.messages");
String data = await methodChannel.invokeMethod("startService");
debugPrint(data);
}
我把上面的代码放在main.dart中。实际上,我正在使用一个 AlarmManager,从而在特定时间调用回调。并且该回调应该调用我已经在我的 MethodChannel 上定义的方法“startService”。
然而,当时间到了并调用该方法时,它会说
Unhandled Exception: MissingPluginException(No implementation found for method startService on channel com.mypackage.messages)
我在 SO 和 Github 中找到了很多关于类似错误的答案,除了那里提到的所有情况都发生在有人实现其他插件时。在这种情况下,我正在做自己的 MethodChannel。
所以我只是想知道我可能在这里遗漏了 MethodChannel 配置的哪一部分,或者我做错了什么。任何帮助将不胜感激。