Reputation: 531
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
Reputation: 399
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
Reputation: 1180
You need to run this code:
Firebase firebase=new Firebase(URL);
firebase.child(id).removeValue();
Upvotes: 0
Reputation: 151
DatabaseReference dbNode = FirebaseDatabase.getInstance().getReference().getRoot().child("Node");
Here Node represents the child which you wish to delete
dbNode.setValue(null);
i.e., while you are working on some data change events
dataSnapshot.getRef().setValue(null);
Upvotes: 15
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