Example usage for android.widget ProgressBar subclass-usage

List of usage examples for android.widget ProgressBar subclass-usage

Introduction

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

Usage

From source file com.sonymobile.androidapp.gridcomputing.views.StatusProgressBar.java

/**
 * StatusBar that changes indeterminate drawable according with each status.
 */
public class StatusProgressBar extends ProgressBar {

    /**

From source file com.stepstone.stepper.internal.ColorableProgressBar.java

/**
 * A {@link ProgressBar} which exposes methods for coloring primary progress and progress background colors individually.
 */
public class ColorableProgressBar extends ProgressBar {

    @ColorInt

From source file org.mozilla.focus.widget.AnimatedProgressBar.java

public class AnimatedProgressBar extends ProgressBar {
    private final static int PROGRESS_DURATION = 200;
    private final static int CLOSING_DELAY = 300;
    private final static int CLOSING_DURATION = 300;
    private ValueAnimator mPrimaryAnimator;
    private ValueAnimator mClosingAnimator = ValueAnimator.ofFloat(0f, 1f);

From source file com.stepstone.stepper.internal.widget.ColorableProgressBar.java

/**
 * A {@link ProgressBar} which exposes methods for coloring primary progress and progress background colors individually.
 * It also allows to animate progress changes.
 */
@RestrictTo(LIBRARY)
public class ColorableProgressBar extends ProgressBar {