当我的应用处于前台时,我收到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
框。
这是我的代码,
dialog
我的问题是如何public class MyMessagingService extends FirebaseMessagingService {
@Override
public void onMessageReceived(final RemoteMessage remoteMessage)
{
super.onMessageReceived(remoteMessage);
// TODO(developer): Handle FCM messages here.
}
}
此对话框或如何将其替换为我自己的对话框?
我是推送通知世界的初学者,所以任何指导都会有所帮助。