Posts by Erivaldo Dantas • 11 points
5 posts
-
0
votes1
answer188
viewsA: Connect android app to a software installed on the pc to transfer file
Friend, I work with an App and a Software that communicate by files, by the way the Software is in Delphi rsrsrs, the exchange of information works like this, we send the files to an email box and…
-
0
votes2
answers2660
viewsA: How to take value from a Radiobuton within a Radiogroup to save in the bank
Do this, create a field in the bank parecerFavoravel BOOLEAN; in the bank and True arrow to Favorable and False to Unfavorable. Declare a Listener in Radiogroup to capture any action on it as the…
-
1
votes2
answers53
viewsA: Doubt Listview
Do what our friend said above and to complement, so that the Arrayadapter get popular your list you will have to write a @Override public String toString(){ return this.variavel; } in your DTO by…
-
0
votes1
answer68
viewsA: How to clean Asynctasks from memory after run?
If anyone has this problem, it happened to me because I was using Volley and every request he generated a Thread and left it in memory. I used Httprequest and I made all the requests of the same…
-
0
votes1
answer68
viewsQ: How to clean Asynctasks from memory after run?
I am developing a commercial APP, in this need to load all customers of the establishment, so I make a request requesting each client, because I need to send the Id of this in the URL of the…