答案 0 :(得分:0)
那么,日内瓦放在您想要的地方。
在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();
}
}
});