Change Volley timeout duration

前端 未结 9 809
梦如初夏
梦如初夏 2020-11-22 14:55

I use the new Volley framework for Android to do a request to my server. But it timeouts before getting the response, although it does respond.

I tried adding this

9条回答
  •  时光说笑
    2020-11-22 15:38

    int MY_SOCKET_TIMEOUT_MS=500;
    
     stringRequest.setRetryPolicy(new DefaultRetryPolicy(
                    MY_SOCKET_TIMEOUT_MS,
                    DefaultRetryPolicy.DEFAULT_MAX_RETRIES,
                    DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
    

提交回复
热议问题