How Can I Make Asynchronous Url Connections On Android?
I am using the following class to connect to my web service. I would like to make this asynchronous. How can I do this? package org.stocktwits.helper; import java.io.BufferedReade
Solution 1:
In addition to all of the possible solutions in Ladlestein's comment, there's the simple answer of wrapping all that in an AsyncTask
.
Solution 2:
You better use httpRequest on github. Here's the link for you : http://kevinsawicki.github.io/http-request/
Post a Comment for "How Can I Make Asynchronous Url Connections On Android?"