我对Android和Java还是很陌生,我想教自己做锁定。
现在,我正在尝试根据已知的uid
来检索用户名,并且不太清楚语法。
我的firebase数据库看起来像这样
├── chat
│ ├── -M5D96yP5Ac688-ZPU0C << chatId 1
│ │ ├── info
│ │ │ ├── groupName: Breakfast Club
│ │ │ ├── id: -M5D96yP5Ac688-ZPU0C
│ │ │ └── Users:
│ │ │ ├── 8J7PX3ezjMTuOiAPO1BbOGJGP1g1: true
│ │ │ └── QvmGG2vPfTrdjZBfWP2ZotajYE3: true
│ │ └──Messages
│ │ .....
├── user
│ ├── 8J7PX3ezjMTuOiAPO1BbOGJGP1g1 << userId
│ │ ├── chat:
│ │ │ ├── -M5D96yP5Ac688-ZPU0C: true << chatId 1
│ │ │ ├── -M5DQuUsTJwO6tdVUstC: true
│ │ │ └── -M5DQuUsTJwO6tdVUstC: true
│ │ ├── email: JohnBender@bkfastclub.com
│ │ ├── name: John Bender
│ │ └──notificationKey: "28cb76b1-e2cd-4fa6-bf37-38336dafc45a"
│ ├── kLdxJGA7Yyfch1TthnnAPrnyny93
我有我所在的groupId,并存储了成员的userIds
private void getGroupMembers() {
String key = mChatObject.getChatId();
ArrayList<UserObject> mMembers = mChatObject.getUserObjectArrayList();
DatabaseReference chatInfoDb = FirebaseDatabase.getInstance().getReference().child("chat").child(key).child("info").child("users");
DatabaseReference mUserDB = FirebaseDatabase.getInstance().getReference().child("user");
// Query query = mUserDB.orderByChild("uid").equalTo(chatInfoDb.getUid());
}
我只是不太清楚如何在用户路径中搜索并获取用户名并将其存储。
最终,我想将它们显示在RecyclerView
中。
任何帮助将不胜感激。
答案 0 :(得分:0)
如果您想在chat/chatID/info/users
下获得用户名,请查看我的答案
如果您的key
实际上是正确的,请首先遍历chat/chatID/info/users
下的所有子级,然后通过调用User
节点来获取名称。
像这样:
//chat ID
String key = mChatObject.getChatId();
//database reference (be careful for lower case or upper case names)
DatabaseReference chatInfoDb = FirebaseDatabase.getInstance().getReference().child("chat").child(key).child("info").child("Users");
DatabaseReference mUserDB = FirebaseDatabase.getInstance().getReference().child("user");
//a first call to the `chat` node:
ValueEventListener chatListener = new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
//loop through children
for(DataSnapshot ds: dataSnapshot.getChildren()){
//this will run n times, where n is the number of children under chat/chatID/info/Users
String userId = ds.getKey();
//now we grab the name for every userID under chat/chatID/info/Users
mUserDB.child(userId).addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
//grab the name and add it to some list
String name = dataSnapshot.child("name").getValue(String.class);
list.add(name)
}
@Override
public void onCancelled(DatabaseError databaseError) {
// log error
Log.w(TAG, "loadPost:onCancelled", databaseError.toException());
}
});
}//loop end
}
@Override
public void onCancelled(DatabaseError databaseError) {
//log error
Log.w(TAG, "loadPost:onCancelled", databaseError.toException());
}
};
chatInfoDb.addValueEventListener(chatListener);