我一直在使用凌空网络库一段时间了。为了向用户显示他们的请求被发送,我向他们展示了一个不确定的进度条,我将其隐藏在onResponse
或onErrorResponse
中。
Bot现在,我想向用户显示请求的进度并更新进度条的进度。从本质上讲,我不想再次使用不确定性。
说我正在提出这个请求:
/ Instantiate the RequestQueue.
RequestQueue queue = Volley.newRequestQueue(this);
String url ="http://www.google.com";
//Show progressBar here
// Request a string response from the provided URL.
StringRequest stringRequest = new StringRequest(Request.Method.GET, url,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
//I Hide progressBar here, and parse and display the response.
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
//I Hide progressBar here also and show a dialog to retry.
}
});
// Add the request to the RequestQueue.
queue.add(stringRequest);
如何更新progressBar的进度?