Could anybody please tell me how to set connection timeout using volley library for about 15 seconds.??
Thanks in Advance!!
Try setting the retry policy DefaultRetryPolicy, something like this:
volleyRequest.setRetryPolicy(new DefaultRetryPolicy(YOUR_TIME_HERE, DefaultRetryPolicy.DEFAULT_MAX_RETRIES, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));