当应用程序位于前台android并接收推送通知时,FirebaseMessagingService会显示对话框

时间:2017-10-31 19:38:47

标签: android push-notification dialog foreground

当我的应用处于前台时,我收到function onloadpg(element_id) { var elem = document.getElementById(element_id); for (var i = 0; i<5; i++) { x[i] = document.createElement("IMG"); x[i].setAttribute("src", "images/" + (i+1) + ".jpg"); x[i].setAttribute("width", "250"); x[i].setAttribute("height", "200"); x[i].setAttribute("alt", fotky.title); x[i].setAttribute("title", fotky.title); x[i].setAttribute("id", i+1); x.setAttribute("onclick", zobraz(x.getAttribute('id')),nacitaj(x.getAttribute('id'))); } onloadpg("element_id"); 框,我收到dialog。我很确定我没有做任何特定的代码来显示这样的push notification框。

enter image description here

这是我的代码,

dialog

我的问题是如何public class MyMessagingService extends FirebaseMessagingService { @Override public void onMessageReceived(final RemoteMessage remoteMessage) { super.onMessageReceived(remoteMessage); // TODO(developer): Handle FCM messages here. } } 此对话框或如何将其替换为我自己的对话框?

我是推送通知世界的初学者,所以任何指导都会有所帮助。

0 个答案:

没有答案