Example usage for android.support.v4.app SupportActivity setProgressBarIndeterminateVisibility

List of usage examples for android.support.v4.app SupportActivity setProgressBarIndeterminateVisibility

Introduction

In this page you can find the example usage for android.support.v4.app SupportActivity setProgressBarIndeterminateVisibility.

Prototype

void setProgressBarIndeterminateVisibility(Boolean visible);

Source Link

Usage

From source file:com.flipzu.flipzu.ListingsFragment.java

private void clearListing() {
    SupportActivity a = getSupportActivity();
    if (a != null)
        a.setProgressBarIndeterminateVisibility(Boolean.TRUE);

    /* clear current view */
    mBcasts.clear();//from ww  w .jav a  2 s  .  c  o m
}