Pages Navigation Menu

Coding is much easier than you think

How To Create Progress Bar in an Android Application using Eclipse:

 
In this tutorial, you will be Learning, How to display Progress Bar in an activity

Here you go!!!!
 

Before creating an android application using Eclipse, let us see some of the key terms involved while developing this application.

Key terms involved in this project:

Intent: Android uses a special class called Intent to move from screen to screen. Intent describe what an application wants done. The two most important parts of the intent data structure are the action and the data to act upon. Typical values for action are MAIN (the front door of the application), VIEW, PICK, EDIT, etc. The data is expressed as a Uniform Resource Indicator (URI). For example, to view a website in the browser, you would create Intent with the VIEW action and the data set to a Website-URI.
 
** UPDATE: Android Complete tutorial now available here.
 
View: It’s a data structure whose properties store the layout and content for a specific rectangular area of the screen. A View object handles measuring, its layout, drawing, focus changes, scrolling, and key/gestures for the screen area it represents. The View class serves as a base class for all widgets. The list of widgets available includes i.e. TextView, EditText, Button, RadioButton, Checkbox, ScrollView, etc.,

Button: A button consists of text or an icon (or both text and an icon) that communicates what action occurs when the user touches it. When the user clicks a button, the Button object receives an on-click event. To define the click event handler for a button, add the android:onClick attribute to the <Button> element in your XML layout.

Progress bar: Progress bar is used to display the progress or the status of any activity such as file download, loading of a web page, etc., A progress bar could be created using the Android ProgressBar class but the simplest approach for a generic implementation is to use the ProgressDialog class, which subclasses AlertDialog and has methods to open and manage a dialog window with a progress bar embedded in it that floats over the dimmed original window. There are two basic types of progress bars that we can implement using the ProgressDialog class:

  • A horizontal bar that fills to show a quantitative amount of progress. This style of progress bar is specified by the class constant ProgressDialog.STYLE_HORIZONTAL.
  • A spinning symbol that indicates progress but of an indeterminate amount. This style of progress bar is specified by the class constant ProgressDialog.STYLE_SPINNER.

The tutorial is about how to display progress bar (horizontal) in the UI of the android application.

This project is developed in Eclipse 4.2 (Juno) and tested with Android 2.2

If you are new to new to android application project, to create a new project in Eclipse refer Creation of Android Project.

Coding:

Now let’€™s go to the coding section. This project requires following files.

Source Code:

  1. Progressbar.java-€“ Activity (main screen)

Activity Files:

  1. activity_progressbar.xml – main screen/ layout

res – Values:

  1. strings.xml- strings available in layout/activity

Manifest file:

  1. AndroidManifest.xml

Here are the coding for the above files.

Progressbar.java:

package com.example.progressbar; // Progress bar package
import android.app.Activity; // Required to create an activity
import android.app.ProgressDialog; // for progress indicator and an optional text message
import android.os.Bundle; // A mapping from String values to various Parcelable types.
import android.os.Handler; // send and process message and runnable objects associated with threads
import android.widget.Button; // Required for using button properties in activity
import android.view.View; // For various views/ widgets
import android.view.View.OnClickListener;
 public class Progressbar extends Activity { // all classes should extend activity
 	Button StartProgress; // object for button class
	ProgressDialog progressBar; // object for progressdialog class
	private int progressBarStatus = 0; // setting progress bar to zero
	private Handler progressBarHandler = new Handler(); // object for handler class
 	private long progress = 0;
 	@Override
	public void onCreate(Bundle savedInstanceState) { // create a new activity
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_progressbar); // display progressbar activity when app starts
 		addListenerOnButton();
 }
 	public void addListenerOnButton() {
// retrieving properties of button from activity
 		StartProgress = (Button) findViewById(R.id.progressbutton);
//Click on button to start progress bar
		StartProgress.setOnClickListener(
                 new OnClickListener() {
 		   @Override
		   public void onClick(View v) {
 			// prepare for a progress bar dialog
			progressBar = new ProgressDialog(v.getContext()); //
			progressBar.setCancelable(true);
			progressBar.setMessage("Starting Progress!!!"); // set message in progressbar dialog
//horizontal progress bar type of progress bar
			progressBar.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
			progressBar.setProgress(0); //set min value of progress bar
			progressBar.setMax(100); // set max value of progress bar
			progressBar.show(); // display progress bar
 			//reset progress bar status
			progressBarStatus = 0;
 			//reset progress
			progress = 0;
 			new Thread(new Runnable() {
			  public void run() {
				while (progressBarStatus < 100) {
 				  // process some tasks
				  progressBarStatus = doSomeTasks();
 				  // your computer is too fast, sleep 1 second
				  try {
					Thread.sleep(1000);
				  } catch (InterruptedException e) {
					e.printStackTrace();
				  }
 				  // Update the progress bar
				  progressBarHandler.post(new Runnable() {
					public void run() {
					  progressBar.setProgress(progressBarStatus);
					}
				  });
				}

				// Progress completed ?!?!,
				if (progressBarStatus >= 100) {
					// sleep 2000 milliseconds, so that you can see the 100%
					try {
						Thread.sleep(2000);
					} catch (InterruptedException e) {
						e.printStackTrace();
					}
					// close the progress bar dialog
					progressBar.dismiss();
				}
			  }
		       }).start();
	           }
                });
        }
 
	// Progress bar simulator...
	public int doSomeTasks() {
		while (progress <= 1000000) {
			progress++;
			if (progress == 100000) {
				return 10;
			} else if (progress == 200000) {
				return 20;
			} else if (progress == 300000) {
				return 30;
			}
		}
 		return 100;
 	}
 }

Activity_progressbar.xml:






 
 

    
 


Menu : activity_progressbar.xml:

  
Note: Since there are no menu settings involved in this project, delete the contents of the menu settings. This may cause errors in R.java while building the project.

AndroidManifest.xml:




    

    
        
            
                

                
            
        
    



strings.xml:






    Progressbar
    



Styles. xml:




    
    

    
    


Run the android application:

Android applications can be run on the android devices. You can either connect a hardware to the system to test the application or you can use the android virtual devices (AVD) Manager to create/manage the virtual devices running on emulator to run the application.

If you are new to create a Android Virtual Device (AVD), refer Creating Android Virtual Device.

To run the application/ project, Build your project using Project -> Build Project.

Build project

This will show errors in Console window at the bottom of the working area in case your project contains.

If your build is successful, Run your application using Run -> Run or Press Ctrl +F11.

Run Project

Upon running the application, the emulator will be launched which displays the AVD on your screen.

Start Emulator

To test your application, unlock the screen and double click on your app.

You can see your app with the image set during the android project creation in AVD.

AVD home screen_6

Now the application runs and the activity progress bar appears as shown below.

Progress bar

Clicking on button displays the progress bar.

Progress bar_click

Progress bar_complete

 

Thus the android application project is developed successfully.

 


Click Here To Share This..!!
Share