Android Question application becomes crazy

Marco Maria Vilucchi

Active Member
Licensed User
Longtime User
I don't konw how explain it, then i'll put a movie.
This app use a MySql database (on internet).
if the Internet signal is poor and i touch more than once the buttons (before first touch has a response), applicatione becomes crazy.
This is the link: http://dropcanvas.com/284um
How can i do to correct it?
Thanks
Marcom
 

KMatle

Expert
Licensed User
Longtime User
I did not watch the video but... Deactivate the button and wait for Job.Done to be finished (here you can give a message to the user and activate it again). If you don't want to wait 30 seconds before you get a timeout due to weak internet connection just set it manually to a lower value (2 seconds will be fine). Use "
Job1.GetRequest.Timeout=2000"
 
Upvote 0

somed3v3loper

Well-Known Member
Licensed User
Longtime User
You might want to limit your application to one httpjob
I don't know how but you might want to check at Job_Done whether the completed job is the latest or desired
 
Upvote 0

JakeBullet70

Well-Known Member
Licensed User
Longtime User
I had something like this happen to me but it ended up being a monitor that was leaking RF (or whatever)
Anyway, if I tested close to the monitor the app went crazy like what you have in your video.

Just my 2 cents.
 
Upvote 0
Top