Posts by Julio Antonini • 9 points
4 posts
-
-1
votes1
answer39
viewsQ: Google maps addListener using React
I need to add the dragend event to get the center of the map google.maps.event.addListener(map, 'dragend', function(evt) { console.log(map.getCenter()); }); however do not know how to make this…
-
0
votes1
answer609
viewsQ: Float Action Button does not get fixed at the footer with Collapsing Actionbar/Toolbar
I have a Fragment with Coordinator layout, recyclerview and a Float Action Button, and in the view that calls this Fragment has a tablayout that hides and appears as you go up or down the Recycler…
-
0
votes1
answer242
viewsQ: Recycler view does not load when the app first opens
I have a recycler view within a fragment in a tablayout, being the main tab. After logging in, it does not load the data, only loads if I change tab and return, or close and open the APP. Code:…
-
0
votes2
answers195
viewsQ: How to list the latest message from all conversations
I’m creating a chat in android studio, so I need to list the last message between the chat user and his contacts, regardless of whether he sent or received the last message. I have selected below on…