Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Okay, I solved it like this:
mDatabaseLinked.orderByChild("Email").equalTo(email).addChildEventListener(new ChildEventListener() {
@Override
public void onChildAdded(DataSnapshot dataSnapshot, String s) {
String name = dataSnapshot.child("Name").getValue(String.class);
Toast.makeText(getActivity(), "Заявка на рассмотрении, " + name, Toast.LENGTH_LONG).show();
}
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question