Akhil
Akhil

Reputation: 531

How to remove child nodes in firebase android?

I have a number of child nodes in my firebase db and I want to delete only one child node.

Firebase firebase=new Firebase("..address..");

firebase.push().setValue(classObj);

//here classObj is a class object which has a getter and setter for an integer id

Now that I have pushed multiple objects I want to delete only one based on the id in the classObj

Upvotes: 37

Views: 76842

Answers (4)

To remove a Node or child node

private FirebaseDatabase database = FirebaseDatabase.getInstance();

database.getReference("root_node_name")
   .child("child_node_name")
   .removeValue();

To remove Sub-child node

database.getReference("root_node_name")
   .child("child_node_name")
   .child("sub_child_node_name")
   .removeValue();

Upvotes: 1

Sunny Sultan
Sunny Sultan

Reputation: 1180

You need to run this code:

 Firebase firebase=new Firebase(URL);
    firebase.child(id).removeValue();

Upvotes: 0

If you are using DatabaseReference for firebase

DatabaseReference dbNode = FirebaseDatabase.getInstance().getReference().getRoot().child("Node");

Here Node represents the child which you wish to delete

dbNode.setValue(null);

If you are using a dataSnapshot

i.e., while you are working on some data change events

dataSnapshot.getRef().setValue(null);

Upvotes: 15

Frank van Puffelen
Frank van Puffelen

Reputation: 598728

To remove data:

firebase.child(id).removeValue();

You might do well to have a look at the Firebase documentation for Android btw, which covers this and many more topics.

Upvotes: 82

Related Questions