gpt4 book ai didi

android - 获取文档标识符,Firestore

转载 作者:行者123 更新时间:2023-11-29 02:21:36 29 4
gpt4 key购买 nike

我正在尝试获取我的字段的 ID。但是当我点击 ListView 的元素时,它会显示数据库中不存在的标识符,并且每次点击都会发生变化。

数据库: Database

显示:

Display enter image description here

代码: Code

如何获取在 ListView 中选择的地址的 ID?

最佳答案

那么,日内瓦把你想要的放在哪里。

在 onClick PositiveButton 内部:

    db.collection("Adresse").whereEqualTo("Adresse", "Geneva").addSnapshotListener(new EventListener<QuerySnapshot>() {
@Override
public void onEvent(@Nullable QuerySnapshot queryDocumentSnapshots, @Nullable FirebaseFirestoreException e) {

if (e != null) {
Log.w(TAG, "listen:error", e);
return;
}

for (DocumentChange dc : queryDocumentSnapshots.getDocumentChanges()) {

String docid = dc.getDocument().getId();
Toast.makeText(getApplicationContext(), docid, Toast.LENGTH_SHORT).show();
}

}
});

关于android - 获取文档标识符,Firestore,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55246790/

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