我正在使用firebase數據庫構建chatapp。我需要顯示在線用戶,我該怎麼做? 我已經嘗試過這個在firebase聊天應用程序中的在線用戶
connectedRef = FirebaseDatabase.getInstance().getReference(".info/connected");
connectedRef.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
boolean connected = snapshot.getValue(Boolean.class);
if (connected) {
} else {
}
}
@Override
public void onCancelled(DatabaseError error) {
System.err.println("Listener was cancelled");
}
});
但我不知道如何使用它,請幫助我。
我建議你閱讀[this](https://firebase.googleblog.com/2013/06/how-to-build-presence-system.html),它是關於使用Firebase構建呈現系統。這非常有趣 –
除了那些(強烈推薦)博客帖子之外,Firebase文檔中的一個部分涵蓋了這一部分:https://firebase.google.com/docs/database/android/offline-capabilities#section-sample –