Search code examples
android-volleyconnection-timeout

ConnectionTimeout in Volley Networking


Could anybody please tell me how to set connection timeout using volley library for about 15 seconds.??

Thanks in Advance!!


Solution

  • Try setting the retry policy DefaultRetryPolicy, something like this:

    volleyRequest.setRetryPolicy(new DefaultRetryPolicy(YOUR_TIME_HERE, DefaultRetryPolicy.DEFAULT_MAX_RETRIES, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));