team) o Volley isn’t an image loading library - it’s an asynchronous networking library o Introduced by Ficus Kirkpatrick at Google I/O 2013 o It’s not yet added to Android API
make asynchronous RESTful HTTP requests o Schedules all your HTTP requests running them parallel in background threads and manages those threads. o Good asynchronous performance o Provides powerful cancellation request API. o Comes with inbuilt JSON parsing the response. o Handles memory errors well o Retry policy for timeout, certain ERROR codes as Internal Server error.
utility classes available: JsonObjectRequest - To send and receive JSON Object from the Server JsonArrayRequest - To receive JSON Array from the Server StringRequest - To retrieve response body as String (ideally if you intend to parse the response by yourself)