Android Core

Android – Volley library example

I am not sure whether you have heard “Volley” word yet but it’s the library on which one expert talk was delivered during Google I/O 2013 by Ficus Kirkpatrick.

What is Volley library exactly for?

Volley is a library that makes networking for Android apps easier and most importantly, faster. It manages the processing and caching of network requests and it saves developers valuable time from writing the same network call/cache code again and again. And one more benefit of having less code is less number of bugs and that’s all developers want and aim for.

My mean of writing the same network call code is AsyncTask and the logic/code you write for fetching response from Web API and displaying it in particular View. We have to take care of displaying ProgressBar/ProgressDialog inside onPreExecute() and onPostExecute(). I know this is not a hard task but still boring, sometimes I also feel get bored even though I have defined BaseTask class for managing display/dismiss operation of ProgressBar/ProgressDialog and many more thing. So now we can say Volley can be a powerful alternative of AsyncTask.

Advantages of using Volley:

  1. Volley automatically schedule all network requests. It means that Volley will be taking care of all the network requests your app executes for fetching response or image from web.
  2. Volley provides transparent disk and memory caching.
  3. Volley provides powerful cancellation request API. It means that you can cancel a single request or you can set blocks or scopes of requests to cancel.
  4. Volley provides powerful customization abilities.
  5. Volley provides Debugging and tracing tools

How to get started?

  1. Clone the Volley project
  2. Import the code into your project

Clone the Volley project:

git clone https://android.googlesource.com/platform/frameworks/volley

It has created “Volley” folder.  Now we have to import this in eclipse or Android studio. FYI, I have been using Git GUI client on my windows machine.

Now suppose If your machine is not having Git client installed and still want to clone repository then Eclipse and ADT Bundle is having option for you to clone repository and import project directly. Refer my previous article for the same: Android – Import projects from Git

2 Main classes of Volley:

There are 2 main classes:

  1. Request queue
  2. Request

Request queue: It is the interest you use for dispatching requests to the network, you can make a request queue on demand if you want, but typically, you’ll instead create it early on, at startup time, and keep it around and use it as a Singleton.

Request: It contains all the necessary details for making web API call. For example: which method to Use (GET or POST), request data to pass, response listener, error listener.

Take a look at JSONObjectRequest request method:

Basic example using Volley:

I assume you have already cloned/downloaded Volley library from git repo. Now, follow the steps to create a simple example of fetching tweets and display it into ListView.

Step 1: Make sure you have imported Volley projects into Eclipse, if you haven’t then import it. Now after importing, we need to make it a Library project by Right click => Properties => Android (left panel).

Step 2: Now, Create a new project with the name VolleyExample.
Step 3: Right click on VolleyExample and Include Volley Library in our project.

Step 4: Include INTERNET permission inside AndroidManifest.xml file.

<uses-permission android:name="android.permission.INTERNET"/>

Step 5:

i) Create an object of RequestQueue class.

RequestQueue queue = Volley.newRequestQueue(this);

ii) Create a JSONObjectRequest with response and error listener.

String url = "https://www.googleapis.com/customsearch/v1?key=AIzaSyBmSXUzVZBKQv9FJkTpZXn0dObKgEQOIFU&cx=014099860786446192319:t5mr0xnusiy&q=AndroidDev&alt=json&searchType=image";

JsonObjectRequest jsObjRequest = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() {

		@Override
		public void onResponse(JSONObject response) {
			// TODO Auto-generated method stub
			txtDisplay.setText("Response => "+response.toString());
			findViewById(R.id.progressBar1).setVisibility(View.GONE);
		}
	}, new Response.ErrorListener() {

		@Override
		public void onErrorResponse(VolleyError error) {
		// TODO Auto-generated method stub

		}
	});

iii) Add your request into the RequestQueue.

queue.add(jsObjRequest);

Complete Code of MainActivity.java file:

package com.technotalkative.volleyexamplesimple;

import org.json.JSONObject;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.TextView;

import com.android.volley.Request;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.JsonObjectRequest;
import com.android.volley.toolbox.Volley;

public class MainActivity extends Activity {

	private TextView txtDisplay;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		txtDisplay = (TextView) findViewById(R.id.txtDisplay);

		RequestQueue queue = Volley.newRequestQueue(this);
		String url = "https://www.googleapis.com/customsearch/v1?key=AIzaSyBmSXUzVZBKQv9FJkTpZXn0dObKgEQOIFU&cx=014099860786446192319:t5mr0xnusiy&q=AndroidDev&alt=json&searchType=image";

		JsonObjectRequest jsObjRequest = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() {

			@Override
			public void onResponse(JSONObject response) {
				// TODO Auto-generated method stub
				txtDisplay.setText("Response => "+response.toString());
				findViewById(R.id.progressBar1).setVisibility(View.GONE);
			}
		}, new Response.ErrorListener() {

			@Override
			public void onErrorResponse(VolleyError error) {
				// TODO Auto-generated method stub

			}
		});

		queue.add(jsObjRequest);

	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}

Download Volley library and sample example: https://github.com/PareshMayani/Android-Volley-Example

Video in case you haven missed session: Google I/O 2013 – Volley: Easy, Fast Networking for Android

 

Reference: Android – Volley library example from our JCG partner Paresh Mayani at the TechnoTalkative blog.

Paresh Mayani

Paresh Mayani is a Mobile application developer from India, having been involved in Android app development since around 3 years. He writes technical articles at TechnoTalkative. Apart from his job, he manages Google Developer Group (GDG) - Ahmedabad and has been speaker in various events. He is very much active in supporting the Android developer community, from answering questions on StackOverflow to publishing articles with possible sample code. Currently he is holder of around 25000 reputation.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

3 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Bharat Dodeja
Bharat Dodeja
10 years ago

Very good article on Volley library and it is easy to understand. Keep writing..

Kumar Gaurav
10 years ago

Hi Paresh,
First of all, Thank you for this very simple tutorial for Volley.
I just want to know, how can I make a Post request ? Yes ,there I can change Request.Method to POST but what about entities need to be added while making request of, like A Login Web Service need login id and password.
Please guide me for the same.

Thanks once again. :)

Femi
8 years ago

Great Tutorial. Please how can I submit a form to a server that redirects to another page. I am currently getting the error below :
11-07 01:01:19.342 28743-29603/net.myeverlasting.webpost E/Volley: [206] BasicNetwork.performRequest: Unexpected response code 302 for https://stageserv.interswitchng.com/test_paydirect/pay
11-07 01:01:19.346 28743-28743/net.myeverlasting.webpost I/System.out: Error [com.android.volley.ServerError]
11-07 01:01:19.346 28743-28743/net.myeverlasting.webpost W/System.err: com.android.volley.ServerError
11-07 01:01:19.346 28743-28743/net.myeverlasting.webpost W/System.err: at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:146)
11-07 01:01:19.346 28743-28743/net.myeverlasting.webpost W/System.err: at com.android.volley.NetworkDispatcher.run(NetworkDispatcher.java:110)

Back to top button