Skip to content

openprojectsFork/ScaleProgressBar

 
 

Repository files navigation

ScaleProgressBar

a customer progressbar for loading effect.

image

You can use ScaleProgressBar(will not be stucked in ui thread) like this
1.in xml

    <com.arjinmc.widgets.ScaleProgressBar 
        android:id="@+id/spb"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

2.in java

	ScaleProgressBar spBar = (ScaleProgressBar) findViewById(R.id.spb);
	spBar.setProgress(20);

Or you can use ScaleProgressDialog(will be stucked in ui thread) like this

  ScaleProgressDialog spDialog = new ScaleProgressDialog(this);
  spDialog.show();
  spDialog.setProgress(20);

About

a customer progressbar for loading effect

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%