我正在使用zo0r react-native-push-notification库。
"react": "16.0.0-alpha.12",
"react-native": "^0.45.1",
"react-native-push-notification": "^3.0.0"
每次打开应用程序时都会运行此代码:
PushNotification.configure({
onNotification: function(notification) {
console.log('onNotification');
ToastAndroid.show('onNotification', 3000);
}
});
我从后台服务发送本地推送通知:
PushNotification.localNotification({
message: 'Hello World',
smallIcon: 'ic_launcher'
});
通知已发送。当我单击它时,onNotification
方法不会被调用,然后当我收到另一个通知时,它实际上被调用。它似乎只有当app在内存中时才有效。
我做错了吗?
我也打开了一个GitHub issue。
答案 0 :(得分:1)
在我的代码中,我在App
类之外配置了通知 - 这是一个问题。我刚刚将配置移动到App构造函数,现在它工作正常,onNotification被调用没有问题:
class App extends React.Component {
constructor(props) {
super(props);
PushNotification.configure({ ... });
}
}
答案 1 :(得分:1)
专门编写的是不将配置放在React生命周期中。否则Android不会有正确的行为(我有这么一点的痛苦!)。 在这里你有一个很好的教程: https://product.farewell.io/visible-react-native-push-notifications-that-work-on-both-ios-and-android-5e90badb4a0f 解释得很糟糕,但这种方法很完美。使用类初始化并调用方法。按照他的建议初始化顶部组件中的类。它运作良好。 使用本教程完成缺少的信息: https://shift.infinite.red/react-native-node-js-and-push-notifications-e851b279a0cd 祝你好运!
答案 2 :(得分:0)
就我而言,我遵循文档中的所有内容,包括适用于android的React生命周期事物,但以下更改除外,即我未配置适当的意图过滤器操作,即
<action android:name="com.google.firebase.MESSAGING_EVENT" />
进行以下更改,这应该有效
<service android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationListenerService" android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
以前,我之所以使用此操作,是因为该监听器未触发
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
答案 3 :(得分:0)
它的常见问题,使用初始屏幕时会出现此问题。 像这样编辑清单:
<activity
android:name=".SplashActivity"
android:theme="@style/SplashTheme"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.INFO" />
</intent-filter>
</activity>