我目前正在尝试在我的 Flutter 应用程序中实现 FCM 和本地通知。我已经成功配置了 FCM 和普通通知的本地通知,但我也有不同类型的通知,我想与图像一起显示,当我的应用程序处于前台时,通知会显示没有错误,但是当我终止应用程序/将其移动到后台时,我在尝试使用路径提供程序保存图像时出现异常。
例外情况:
MissingPluginException(No implementation found for method getApplicationDocumentsDirectory on channel plugins.flutter.io/path_provider)
我假设发生此错误是因为当应用程序不在前台时路径提供程序方法通道已关闭,我可以做些什么来解决这个问题?或者,如果不是flutter_local_notifications
插件需要位图的文件路径,我是否可以实现保存图像并以不同的方式获取将在后台工作的路径(没有路径提供程序(? (我实际上想显示的是来自以下链接的图像:https://is1-ssl.mzstatic.com/image/thumb/WNUBiv2P6YSklHn9eA5nlg/1000x1000bb.jpeg(
保存图像:
static Future<String> saveImage(Image image) {
final completer = Completer<String>();
image.image.resolve(ImageConfiguration()).addListener(ImageStreamListener((imageInfo,_) async {
final byteData = await imageInfo.image.toByteData(format: ImageByteFormat.png);
final pngBytes = byteData.buffer.asUint8List();
final fileName = pngBytes.hashCode;
final directory = await getApplicationDocumentsDirectory();
final filePath = '${directory.path}/$fileName';
final file = File(filePath);
await file.writeAsBytes(pngBytes);
completer.complete(filePath);
}));
return completer.future;
}
您还需要在应用程序中注册路径提供程序.java。
import io.flutter.plugins.pathprovider.PathProviderPlugin;
...
@Override
public void registerWith(PluginRegistry registry) {
PathProviderPlugin.registerWith(registry.registrarFor("io.flutter.plugins.pathprovider.PathProviderPlugin"));
}
现在 flutter 使用 Kotlin 作为 android 端的默认语言,这里是 Kotlin 代码:
override fun registerWith(registry: PluginRegistry) {
io.flutter.plugins.firebasemessaging.FirebaseMessagingPlugin.registerWith(registry?.registrarFor("io.flutter.plugins.firebasemessaging.FirebaseMessagingPlugin"));
PathProviderPlugin.registerWith(registry.registrarFor("io.flutter.plugins.pathprovider.PathProviderPlugin"))
}
发生此错误是因为您没有在 android MainActivity 中注册颤振插件。
您必须更改主活动的创建方法,如下所示:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
GeneratedPluginRegistrant.registerWith(this.getFlutterEngine());
}