最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Flutter. Scheduled Android notifications when device is locked - Stack Overflow

programmeradmin2浏览0评论

I use flutter_local_notifications for scheduled Android notifications:

    tz.initializeTimeZones();

final String currentTimeZone = await FlutterTimezone.getLocalTimezone();
tz.setLocalLocation(tz.getLocation(currentTimeZone));

var androidPlatformChannelSpecifics = AndroidNotificationDetails(
      'your_channel_id', 'your_channel_name',
      importance: Importance.max, priority: Priority.high, ticker: 'ticker');
var platformChannelSpecifics = NotificationDetails(
         android: androidPlatformChannelSpecifics);
 

var date = tz.TZDateTime.now(tz.local).add(const Duration(seconds: 5));

await flutterLocalNotificationsPlugin.zonedSchedule(
    0,
    'scheduled title',
    'scheduled body',
    date,
    platformChannelSpecifics,
    androidScheduleMode: AndroidScheduleMode.exactAllowWhileIdle);

}

This works when the app is in the background, but it doesn't work if the device is locked. I need a sound signal when the device is locked.

Here is permissions in AndroidManifest.xml:

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

Do I need to use Full-screen intent notifications to get notifications when device is locked?

I use flutter_local_notifications for scheduled Android notifications:

    tz.initializeTimeZones();

final String currentTimeZone = await FlutterTimezone.getLocalTimezone();
tz.setLocalLocation(tz.getLocation(currentTimeZone));

var androidPlatformChannelSpecifics = AndroidNotificationDetails(
      'your_channel_id', 'your_channel_name',
      importance: Importance.max, priority: Priority.high, ticker: 'ticker');
var platformChannelSpecifics = NotificationDetails(
         android: androidPlatformChannelSpecifics);
 

var date = tz.TZDateTime.now(tz.local).add(const Duration(seconds: 5));

await flutterLocalNotificationsPlugin.zonedSchedule(
    0,
    'scheduled title',
    'scheduled body',
    date,
    platformChannelSpecifics,
    androidScheduleMode: AndroidScheduleMode.exactAllowWhileIdle);

}

This works when the app is in the background, but it doesn't work if the device is locked. I need a sound signal when the device is locked.

Here is permissions in AndroidManifest.xml:

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

Do I need to use Full-screen intent notifications to get notifications when device is locked?

Share Improve this question asked Apr 2 at 9:13 DimaDima 1,2891 gold badge10 silver badges14 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Android devices may not allow notifications when the screen is locked for battery optimization. For this reason, I recommend ignoring battery optimization.

<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />

If you also use a notification service, you also need this permission on Android 9+ versions.

<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
发布评论

评论列表(0)

  1. 暂无评论