Я попытался установить путь к документу со значением из текстового поля.Но приложение продолжает падать всякий раз, когда я пытаюсь это сделать.
DocumentReference docRef = db.collection("Users").document(textDisplay2.getText().toString());
docRef.get().addOnCompleteListener(new OnCompleteListener<DocumentSnapshot>() {
@Override
public void onComplete(@NonNull Task<DocumentSnapshot> task) {
if (task.isSuccessful()) {
DocumentSnapshot document = task.getResult();
if (document != null && document.exists()) {
Log.d("TAG", document.getString("name")); //Print the name
} else {
Log.d(TAG, "No such document");
}
} else {
Log.d(TAG, "get failed with ", task.getException());
}
}
});