我想在不同的帖子中使用Android Volley库发出请求。
我的意思是,线程中存在连接,并且在UI线程中处理数据。
我想这样做是因为我有很多连接,需要处理大量数据,现在用户界面被阻止了。
那么,我如何在不同的Thread中创建和启动连接, 然后在UIThread中执行OnResponse()/ OnErrorResponse()?
JsonArrayRequest getReq = new JsonArrayRequest(url,new Response.Listener<JSONArray>() {
@Override
public void onResponse(JSONArray response) {
Log.d("onRESPONSE Synchro -> Produit",response.toString());
PgrBarProducts.setMax(response.length());
percentDisplayProduct.setText("0/"+ PgrBarProducts.getMax());
nbMaxCallNetwork = PgrBarProducts.getMax();
try {
for (int i = 0; i < response.length(); i++) {
JSONObject explrObject = response.getJSONObject(i);
String id = Integer.toString((Integer) explrObject.get("id"));
callOneObject(id, PgrBarProducts, percentDisplayProduct , 1); // appel du product
}
} catch (JSONException e) {
e.printStackTrace(new PrintWriter(stackTrace));
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
changeStatutToError();
VolleyLog.d("", "Error: " + error.getMessage());
percentDisplayProduct.setTextColor(Color.RED);
percentDisplayProduct.setTypeface(null, Typeface.BOLD);
percentDisplayProduct.setText("erreur");
waitBarProgressProduct.setVisibility(View.INVISIBLE);
synchroProducts.setVisibility(View.VISIBLE);
}
});
getReq.setRetryPolicy(new DefaultRetryPolicy(60 * 1000,
1, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
// Adding request to request queue and start the request
AppController.getInstance().addToAndStartRequestQueue(getReq);
答案 0 :(得分:19)
Volley执行的每个网络请求都在后台线程中执行。 Volley在幕后处理这个问题。所以不需要在不同的线程上执行请求,因为那已经发生了。
另一方面,侦听器在UI线程上调用。
当您写到在UI线程上处理数据时,您基本上回答了自己的问题。只需将在侦听器中执行的数据处理移动到后台线程/ AsyncTask
即可释放UI线程并防止阻塞。