Posts by Felipe Arimateia • 106 points
6 posts
-
0
votes1
answer222
viewsA: Does Valueeventlistener count as a simultaneous connection in Firebase?
Your thinking is correct, for every active user is a connection in the bank. And if your connections are on edge, new active users won’t be able to connect to the base. Another precaution you need…
-
1
votes1
answer532
viewsA: How do I save latitude and longitude in Firebase?
If you wish in the future to conduct a ray-based search, I recommend you use the Geofire. Example: DatabaseReference ref = FirebaseDatabase.getInstance().getReference("path/to/geofire"); GeoFire…
-
2
votes2
answers243
viewsA: Design in different versions of Android
Daniela, you can use the support libraries to maintain compatibility with various versions of Android. Reference: http://developer.android.com/tools/support-library/index.html Ionic is for creating…
-
3
votes2
answers668
viewsA: I can’t start a service
Pedro, on Androidmanifest you declared the service within the tag <activity>. And correct is that inside Tag <application>. See Example: <manifest ... > ... <application ...…
-
1
votes1
answer80
viewsA: Will Facebook approve an Android app with facebook4j?
Alamo, I don’t know exactly how to answer your question. But I use Android Simple Facebook, which is a library that makes transparent the use of the Facebook SDK.…
-
2
votes1
answer124
viewsA: Sharedpreferences within each Listview item
Gustavo, you need to save each item with a different key (key). Example: SharedPreferences save = getSharedPreferences("save",Context.MODE_PRIVATE); SharedPreferences.Editor editor = save.edit();…