Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. // Read from the database
  2.  
  3. mFirebaseDatabase.getReference("airvisual-e9c40").orderByChild("Time").equalTo(time).addListenerForSingleValueEvent(
  4. new ValueEventListener() {
  5.  
  6. @Override
  7. public void onDataChange(DataSnapshot dataSnapshot) {
  8.  
  9. for (DataSnapshot data : dataSnapshot.getChildren()) {
  10. // here the user will have the specified email only
  11. Toast.makeText(getApplicationContext(), "Done", Toast.LENGTH_LONG).show();
  12. }
  13.  
  14. }
  15.  
  16. @Override
  17. public void onCancelled(@NonNull DatabaseError databaseError) {
  18.  
  19. }
  20.  
  21. });
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement