Example usage for android.widget ProgressBar ProgressBar

List of usage examples for android.widget ProgressBar ProgressBar

Introduction

In this page you can find the example usage for android.widget ProgressBar ProgressBar.

Prototype

public ProgressBar(Context context, AttributeSet attrs, int defStyleAttr) 

Source Link

Usage

From source file:com.skytree.epubtest.BookViewActivity.java

public void makeIndicator() {
    progressBar = new ProgressBar(this, null, android.R.attr.progressBarStyle);
    ePubView.addView(progressBar);/*  w  w  w  .j a v a 2  s  .  c  om*/
    this.hideIndicator();
}