Change Volley timeout duration

前端 未结 9 757
梦如初夏
梦如初夏 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:28

    Another way of doing it is in custom JsonObjectRequest by:

    @Override
    public RetryPolicy getRetryPolicy() {
        // here you can write a custom retry policy and return it
        return super.getRetryPolicy();
    }
    

    Source: Android Volley Example

提交回复
热议问题