gpt4 book ai didi

java - 当用户在我的聊天中收到其他用户的新消息时,如何创建通知?

转载 作者:行者123 更新时间:2023-12-02 03:03:32 25 4
gpt4 key购买 nike

我在 Android 应用程序中进行聊天。通过此聊天,我的应用程序中的用户可以通过文本相互通信。

当用户(“Zoey”)向另一个用户(“Fred”)发送消息时,我希望 Fred 收到相关通知,即使 Fred 设备上的应用程序在 Zoey 发送消息时已关闭。

我尝试创建一个服务,该服务基本上应该在每次数据库引用发生更改时进行监听。

    @Override
public int onStartCommand(Intent intent, int flags, int startId) {
// Toast.makeText(getApplicationContext(),"service created: "+staticUSERNAME,Toast.LENGTH_LONG).show();
databaseReference = FirebaseDatabase.getInstance().getReference().child("Notifications");
notificationManager = NotificationManagerCompat.from(this);
createNotificationChannels();
addUserStateListener();
Toast.makeText(getApplicationContext(),"service started ",Toast.LENGTH_LONG).show();

//add5();
return START_STICKY;
}

private void addUserStateListener() {
ValueEventListener valueEventListener = new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
Toast.makeText(getApplicationContext(), "DATE CHANGED.", Toast.LENGTH_LONG).show();
}

@Override
public void onCancelled(@NonNull DatabaseError databaseError) {

}
};
databaseReference.addValueEventListener(valueEventListener);

}

最佳答案

我建议您使用 Firebase 云消息传递。

https://firebase.google.com/docs/cloud-messaging

这将保证当应用程序处于后台时通知将被传递。如果您使用服务并且系统被杀死该应用程序,在这种情况下服务将不会再次启动并且通知不会发送给用户。

这是我的经历。经过长时间的服务尝试后,我使用 FCM 制定了解决方案,这对我来说非常适合。

关于java - 当用户在我的聊天中收到其他用户的新消息时,如何创建通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57036933/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com