我已经使用flutterLocalNotificationsPlugin.zonedSchedule()来安排本地通知和它的工作很好。在我想检查应用程序是否在前台或应用程序是否在后台之前发送此计划的本地通知时。如果Flutter应用程序正在运行意味着应用程序是前台,所以我希望该计划通知为在应用程序通知,如果关闭意味着应用程序是在后台比发送计划通知为实际通知。
flutterLocalNotificationsPlugin.zonedSchedule()
我已经在iOS中使用Flutter中的本机Swift代码完成了此功能,但我如何才能为Android侧代码做到这一点?
h9a6wy2h1#
这可以在没有本机代码的帮助下关闭,并适用于ios和android(可能需要对代码进行少量修改)。首先,我们创建一个生命周期处理程序类,它将扩展WidgetsBindingObserver类。简而言之,这个类在flutter中用于通知对象环境中的变化。要了解更多信息,请访问:https://api.flutter.dev/flutter/widgets/WidgetsBindingObserver-class.html
import 'package:flutter/material.dart';final lifecycleEventHandler = LifecycleEventHandler._();class LifecycleEventHandler extends WidgetsBindingObserver { bool inBackground = true; LifecycleEventHandler._(); initialise() { WidgetsBinding.instance.addObserver(lifecycleEventHandler); } @override Future<void> didChangeAppLifecycleState(AppLifecycleState state) async { switch (state) { case AppLifecycleState.resumed: inBackground = false; print('App is in foreground'); break; case AppLifecycleState.inactive: case AppLifecycleState.paused: case AppLifecycleState.detached: inBackground = true; print('App is in background'); break; } }}
import 'package:flutter/material.dart';
final lifecycleEventHandler = LifecycleEventHandler._();
class LifecycleEventHandler extends WidgetsBindingObserver {
bool inBackground = true;
LifecycleEventHandler._();
initialise() {
WidgetsBinding.instance.addObserver(lifecycleEventHandler);
}
@override
Future<void> didChangeAppLifecycleState(AppLifecycleState state) async {
switch (state) {
case AppLifecycleState.resumed:
inBackground = false;
print('App is in foreground');
break;
case AppLifecycleState.inactive:
case AppLifecycleState.paused:
case AppLifecycleState.detached:
inBackground = true;
print('App is in background');
字符串现在,我们将在任何时候使用这个类来监听我们的应用程序的更改。我们可以将它添加到我们的main.dart文件中的void main()中。如果你想从应用程序的开始监听更改。
lifecycleEventHandler.initialise();
型调用上面的函数将观察者添加到您的应用程序。现在,在通知函数中执行以下操作:
Future showNotification() async { if (!lifecycleEventHandler.inBackground){ //Show in app notification } //otherwise notification in notification tray ...}
Future showNotification() async {
if (!lifecycleEventHandler.inBackground){
//Show in app notification
//otherwise notification in notification tray
...
型
1条答案
按热度按时间h9a6wy2h1#
这可以在没有本机代码的帮助下关闭,并适用于ios和android(可能需要对代码进行少量修改)。
首先,我们创建一个生命周期处理程序类,它将扩展WidgetsBindingObserver类。简而言之,这个类在flutter中用于通知对象环境中的变化。要了解更多信息,请访问:https://api.flutter.dev/flutter/widgets/WidgetsBindingObserver-class.html
字符串
现在,我们将在任何时候使用这个类来监听我们的应用程序的更改。我们可以将它添加到我们的main.dart文件中的void main()中。如果你想从应用程序的开始监听更改。
型
调用上面的函数将观察者添加到您的应用程序。
现在,在通知函数中执行以下操作:
型