即使屏幕被锁定,我也需要在手机顶部显示通知,在Android的react-native中。我正在使用“ react-native-firebase”软件包。
下面是我尝试过的代码:
const channel = new firebase.notifications.Android.Channel(
'goofy',
'goofy the goofy',
firebase.notifications.Android.Importance.Max
)
.setDescription('ideally should work')
.enableLights(true)
.enableVibration(true)
.setLockScreenVisibility(firebase.notifications.Android.Visibility.Public);
仍然在设置中得到以下配置:
我想念什么吗?理想情况下,应该启用这些按钮。