Posts by Matheus de Mello • 81 points
4 posts
-
1
votes1
answer577
viewsA: Sending location to webservice
I personally do like you. I created a class that mounts the queue of uploads to the server, when I add a request to the end of the queue I try to send the requests if there is a connection. I also…
-
0
votes1
answer207
viewsA: Android Google Maps API
To achieve this you will need to use the Google maps Directions API. As the question involves many things I recommend you to take a look at the API documentation, which is in Portuguese.…
-
1
votes1
answer709
viewsA: How to make a Dynamic Listview generated with Barcodescan data?
I will recommend using Recyclerview instead of Listview because Recyclerview supports everything that a Listview does more efficiently. I would also like to recommend reading below so you can…
androidanswered Matheus de Mello 81 -
3
votes3
answers604
viewsA: Recyclerview adapter: problem when changing the color of a button
Recyclerview is an optimized version of a Listview for a reason: as the name says, it reuses Views. When you change the color of the button of an item that is in a View, it may happen that when…