Skip to content

Latest commit

 

History

History
40 lines (22 loc) · 2.17 KB

README.md

File metadata and controls

40 lines (22 loc) · 2.17 KB

VolleyRecyclerView

How you can Insert and Fetch the data from server using Volley and RecyclerView?

Introduction to volley Volley is a HTTP library developed by Google and was first introduced during Google I/O 2013. This library is used to transmit data over the network. It actually makes networking faster and easier for Apps.Volley is a networking library it offers great features like synchronous requests, asynchronous requests, prioritization, making multiple requests at the same time, ordered requests and of course caching.

  1. No automatic parsing
  2. Caching Mechanism
  3. Retry policy
  4. inbuilt image loading support

Android volley has a very elaborate and flexible caching mechanism.When a request is made through volley first the cache is checked for appropriate response if it is found there than it is returned and parsed else network hit is made.

Volley supports both post requests and multipart uploads but for post requests we have to convert our java objects to JSONObject.Also for multipart uploads we have to do some extra code and use some additional classes.

Volley we can set a retry policy using setRetryPolicy method. It support the customized request timeout, number of retries and back off multiplier.

Image Loading Volley has an inbuilt support for image loading.it is packaged with a loader a custom view called NetworkImageView which is specially designed to download and show images.

Volley can capture four types of responses automatically through these requests:

StringRequest – This type of request converts the response into a String.

JsonObjectRequest – This type of request and response is automatically converted into a JSONObject.

JsonArrayRequest – This type of request and response is automatically converted into a JSONArray.

ImageRequest – This type of request converts the response into a decoded bitmap.

Must add these dependencies in build.gradle(Module app)

implementation 'com.android.support:cardview-v7:26.1.0'       
implementation 'com.android.support:recyclerview-v7:26.1.0'       
implementation 'com.android.support:design:26.1.0'        
compile 'com.mcxiaoke.volley:library:1.0.19'