收到来自 Firebase 的通知时触发警报
Posted
技术标签:
【中文标题】收到来自 Firebase 的通知时触发警报【英文标题】:Trigger Alarm When Receive Notification From Firebase 【发布时间】:2017-08-24 16:38:31 【问题描述】:在我的应用程序中,我将有一个将消息发送到 firebase 的外部服务,该服务将向特定主题中的所有设备发送通知。到目前为止,我可以收到通知,但我需要在它发生时敲响警报。
问题是:我收到通知但无法启动闹钟。
到目前为止,这是我的接收器代码:
public class MessageReceiver extends FirebaseMessagingService
private static final String TAG = "FCM Service";
@Override
public void onMessageReceived(RemoteMessage remoteMessage)
// TODO: Handle FCM messages here.
// If the application is in the foreground handle both data and notification messages here.
// Also if you intend on generating your own notifications as a result of a received FCM
// message, here is where that should be initiated.
Log.d(TAG, "From: " + remoteMessage.getFrom());
Log.d(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
PendingIntent pintent = PendingIntent.getService(getApplicationContext(), 0, intent, 0);
AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
alarm.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 0, pintent);
alarm.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), pintent);
和清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="XXXXXXXXXXXX">
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<service
android:name=".MessageReceiver">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
<action android:name="android.intent.action.RESPOND_VIA_MESSAGE"/>
</intent-filter>
</service>
<service android:name=".FirebaseIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
</application>
</manifest>
【问题讨论】:
您有什么解决方案可以在收到 Firebase 通知后触发警报吗? 【参考方案1】:您没有说明问题所在。我认为MainActivity
没有启动。这很可能是由以下语句引起的:
PendingIntent pintent = PendingIntent.getService(getApplicationContext(), 0, intent, 0);
因为你要启动的是一个Activity,而不是一个Service,所以应该是:
PendingIntent pintent = PendingIntent.getActivity(getApplicationContext(), 0, intent, 0);
【讨论】:
已编辑!谢谢,但仅此一项就会触发警报? @Myrium:您致电AlarmManager
时需要进行此更正。 MainActivity
没有启动吗?您拨打alarm.setRepeating(...)
似乎没有必要或不正确。为什么要以 0 间隔重复警报?
看来我参数设置错了,只需要触发一次警报,打开应用进入MainActivity以上是关于收到来自 Firebase 的通知时触发警报的主要内容,如果未能解决你的问题,请参考以下文章
iOS 13 及更高版本未收到来自 Firebase 的推送通知