, , , loopj :
android.os.NetworkOnMainThreadException
, , , (logcat - )
:
AsyncHttpRequest.makeRequestWithRetries(AsyncHttpRequest.java:203)
:
Handler handler = new Handler();
Runnable r = new Runnable(){
public void run(){
SyncHttpClient client ....
client.get(.....);
}
};
, SyncHttpClient Handler.post(), , , (Networking on non-main thread)
, , " (...)", mikeorr85. ...
new Thread(Runnable r = new Runnable(){
public void run(){
SyncHttpClient client ....
client.get(.....);
}
}).start();