Posts by FranciscoM • 23 points
11 posts
-
0
votes0
answers255
viewsQ: My Google Maps API Credential Has Stopped Working
I have an Android application and is no longer loading the bookmarks on the map, application that is active in Google Play Store, no update was made on apk, no key was changed in Google Cloud…
-
0
votes1
answer360
viewsA: How to show the connected user’s Firebase ID on the screen?
I was able to solve it this way. FirebaseUser user1 = FirebaseAuth.getInstance().getCurrentUser(); if (user1 != null) { for (UserInfo profile : user1.getProviderData()) { // Id of the provider (ex:…
-
0
votes1
answer360
viewsQ: How to show the connected user’s Firebase ID on the screen?
I need to take getUid from the connected user and set the id in an editText. I left it down just to show what I want to do, because that way it doesn’t work. How can I call a getUid connected to any…
-
0
votes1
answer160
viewsQ: How to embed a custom map in Android?
I have a custom map made on Google maps and want to incorporate it in an Android app. I want you to load the custom map as soon as you enter the app.
-
0
votes2
answers786
viewsA: How to send a photo taken from the camera to an Imageview?
Try to put this code in place. Remembering that the code below is to open gallery and camera and add the photo in an Imageview. Add permissions from CAMERA, READ_EXTERNAL_STORAGE,…
-
0
votes2
answers769
viewsQ: Resize an image before uploading to Firebase
I want to resize the image that is in imageView coming from a camera or gallery before sending to Firebase, as you can see is being sent the "filepath" that is a Ri so I can not use scaleDown code.…
-
1
votes1
answer466
viewsQ: How to search within a Recycleview?
I have a Recycleview that receives data from Firebase, each data creates a box in the layout with the information contained within each key there in Firebase. I want you to search for a certain data…
-
0
votes1
answer98
viewsA: Error while recovering data from Firebase Latlng
I managed to resolve it by removing this part of the code. I think it was giving conflict with the geolocation. private LatLngBounds maplocal = new LatLngBounds( new LatLng(-16.5191275,…
-
0
votes1
answer98
viewsQ: Error while recovering data from Firebase Latlng
I want to capture latitude and longitude of data that is in Firebase and add as markers in Google maps. I am receiving null error Object Reference on line 136>> String latitude =…
-
0
votes3
answers1340
viewsQ: How to recover all data inside the key in Firebase
I have this structure at Firebase. And I need to capture all the latitudes and longitudes that are inside each key, I did a test and it’s working if I put this data in a folder without the key it…
-
0
votes1
answer1104
viewsQ: How to receive all images from Firebase Storage and display in a listview
I have several images captured via camera or gallery that was uploaded via app in Firebase Storage, using Glide I can display images, but only manually (added one by one in the hand), and my…