Posts by ruitercomp • 66 points
5 posts
-
0
votes2
answers238
viewsA: Firebase Google
You can create your routines on the server side using Firebase Database REST API and send your notifications via Curl also. Just create according to your business rule Firebase Database REST API…
-
0
votes2
answers982
viewsA: Linearlayout Over Other Linearlayout
use setVisibility you leave visible or not the layout you want to show to the user depending on the action of it. setVisibility…
-
1
votes1
answer40
viewsQ: Check that all objects in the class that extends Realmobject are empty
My Book.class extending realmobject public class Book extends RealmObject { private String title; private String author; public String getTitle() { return title; } public void setTitle(String title)…
-
2
votes2
answers61
viewsA: Error "required int" when executing code
try this: System.exit(0); it waits for an int parameter to run Look: https://docs.oracle.com/javase/7/docs/api/java/lang/System.html…
javaanswered ruitercomp 66 -
2
votes2
answers4128
viewsA: How do I search (SELECT and WHERE) in the firebase database?
Try to use Child() Firebase Child myRef.child("codreserva").child(codigoreserva).addValueEventListener(new ValueEventListener() { @Override public void onDataChange(DataSnapshot dataSnapshot) {…