onNotificationOpened和getInitialNotification未被触发react-na
发布时间:2020-12-15 20:20:24 所属栏目:百科 来源:网络整理
导读:我在我的反应原生项目[ android平台]中使用了react-native-firebase来显示应用程序通知.使用此库,我可以在应用程序处于前台/后台/关闭状态时显示通知. 根据react本机firebase文档,当通知点击打开应用程序时,应触发onNotificationOpened.但是,在我的情况下不
我在我的反应原生项目[
android平台]中使用了react-native-firebase来显示应用程序通知.使用此库,我可以在应用程序处于前台/后台/关闭状态时显示通知.
根据react本机firebase文档,当通知点击打开应用程序时,应触发onNotificationOpened.但是,在我的情况下不会发生这种情况,从不调用onNotificationOpened方法,并且getInitialNotification方法始终获取空值. 我也使用react-native-splash-screen库来显示启动画面. 这是来自App.js>>的代码. componentDidMount() firebase.messaging().requestPermission() .then(() => { const myAppChannel = new firebase.notifications.Android.Channel('my-channel','my Channel',firebase.notifications.Android.Importance.Max) .setDescription('my channel'); firebase.notifications().android.createChannel(myAppChannel); this.messageListener = firebase.messaging().onMessage((message) => { const {title,body} = message.data; const notificationDisplay = new firebase.notifications.Notification() .setNotificationId('notificationId') .setTitle(title) .setBody(body) .setData({ key1: 'value1',key2: 'value2',}).setSubtitle('notification') .setSound('default'); notificationDisplay .android.setChannelId('my-channel') .android.setSmallIcon('ic_launcher') .android.setAutoCancel(true).android.setPriority(firebase.notifications.Android.Priority.High); firebase.notifications().displayNotification(notificationDisplay); }); this.notificationOpenedListener = firebase.notifications().onNotificationOpened((notificationOpen: NotificationOpen) => { //never gets called console.log('onNotificationOpened was triggered on notification taped'); }); }) .catch(error => { // User has rejected permissions console.log("user rejected"); console.log(error); }); AndroidManifest.xml中 <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <uses-permission android:name="android.permission.VIBRATE" /> <application android:name=".MainApplication" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme"> <service android:name="io.invertase.firebase.messaging.RNFirebaseMessagingService"> <intent-filter> <action android:name="com.google.firebase.MESSAGING_EVENT" /> </intent-filter> </service> <service android:name="io.invertase.firebase.messaging.RNFirebaseInstanceIdService"> <intent-filter> <action android:name="com.google.firebase.INSTANCE_ID_EVENT" /> </intent-filter> </service> <service android:name="io.invertase.firebase.messaging.RNFirebaseBackgroundMessagingService" /> <meta-data android:name="com.google.firebase.messaging.default_notification_channel_id" android:value="@string/default_notification_channel_id" /> <activity android:name=".SplashActivity" android:label="@string/app_name" android:launchMode="singleTop" android:theme="@style/SplashTheme"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".MainActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenSize" android:exported="true" android:label="@string/app_name" android:launchMode="singleTop" android:windowSoftInputMode="adjustResize" /> <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" /> </application> 更新:问题是由react-native-splash-screen库引起的,我能够在从android项目中删除react-native-splash-screen库后修复此问题.但是,当使用react-native-splash-screen时,我仍然不确定如何使这项工作成功. 解决方法
将意图过滤器添加到MainActivity并将click-action添加到通知JSON为我做了诀窍.
<intent-filter> <action android:name=".MainActivity" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> 通知JSON { "to":"ID","notification" : { **"click_action" : ".MainActivity",** "body": "Message Body","title" : "Call Status","sound": "default","badge":"5" },"data": { "type": 1,"body": "Message Body","title" : "Call Status" } } 我的manifest.xml看起来像这样 <application tools:replace="android:allowBackup" android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:allowBackup="false" android:theme="@style/AppTheme"> <service android:name="io.invertase.firebase.messaging.RNFirebaseMessagingService"> <intent-filter> <action android:name="com.google.firebase.MESSAGING_EVENT" /> </intent-filter> </service> <service android:name="io.invertase.firebase.messaging.RNFirebaseInstanceIdService"> <intent-filter> <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/> </intent-filter> </service> <activity android:name=".SplashActivity" android:theme="@style/SplashTheme" android:launchMode="singleTop" 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:screenOrientation="portrait" android:launchMode="singleTop" android:configChanges="keyboard|keyboardHidden|orientation|screenSize" android:windowSoftInputMode="adjustPan"> <intent-filter> <action android:name=".MainActivity" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity> <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" /> </application> 希望这可以帮助 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |